<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    creationComplete="init()" styleName="feedWindow" viewSourceURL="srcview/index.html">

    <mx:HBox id="controls" styleName="controls" width="100%" height="80" top="0">
        <mx:Image source="skin/digglogo.jpg" useHandCursor="true" buttonMode="true" click="navigateToURL(new URLRequest('http://www.digg.com'), '_blank')"/>
        <mx:Image source="skin/snaplogo.jpg" useHandCursor="true" buttonMode="true" click="navigateToURL(new URLRequest('http://www.snap.com'), '_blank')" />
    </mx:HBox>
    
    <mx:VBox id="thumbnails" styleName="thumbnails" width="100%" height="100%" top="80">
        <mx:TileList id="imageList" itemRenderer="pkg.Thumbnail" selectedIndex="0"
            width="100%" columnWidth="{colWidth}" rowHeight="260"  height="100%" /> 
    </mx:VBox>
    
    <mx:Style source="skin/main.css"/>
    <mx:Script source="as/RSSfeeder.as" />
</mx:Application>