$(document).ready(function ()
{
		var $content = $('#slideContainer'),
		$caption = $('div.caption');

	$content.crossSlide({
		fade: 1
	}, [
		{
			src:  'im/bridge.jpg',
			from: '100% 80% 1.0x',
			to:   '90% 20% 1.3x',
			time: 12
		}, {
			src:  'im/flowers.jpg',
			from: 'top left',
			to:   'bottom right 1.3x',
			time: 15
		}, {
			src:  'im/forest.jpg',
			from: '80% 80% 1.0x',
			to:   '60% 0% 1.3x',
			time: 12
		}, {
			src:  'im/tractor.jpg',
			from: 'top left 1.0x',
			to:   '80% 60% 1.2x',
			time: 12
		}, {
			src:  'im/wheat.jpg',
			from: '70% 70%',
			to:   'top right',
			time: 12
		}
	], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			$caption.text(img.alt).animate({ opacity: .7 })
		} else {
			$caption.animate({ opacity: 0 })
		}
	});
	//$caption.show().css({ opacity: 0 })
});
