<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/02/15/creating-a-simple-image-gallery-with-the-flex-horizontallist-control/ -->
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
		horizontalAlign="center" verticalAlign="middle">

	<mx:Image source="{data.thumbnailImage}"
			horizontalCenter="0"
			verticalCenter="0" />

	<mx:Label text="{data.label}"
			horizontalCenter="0"
			bottom="0" />

</mx:VBox>

