$(function() {
	var $slideShow = $('#slideShow'),
		$caption = $('div.caption');

	$slideShow.crossSlide({
		fade: 1
	}, [
		{
			src:  'flash/carousel/images/image1.jpg',
			alt:  'All stock NCT\'d',
			href: 'http://www.3rockcars.ie/',
			from: 'top center 1x',			
			to:   'bottom left 1x',
			time: 5
		}, {
			src:  'flash/carousel/images/image2.jpg',
			alt:  'All stock serviced',
			href: 'http://www.3rockcars.ie/',
			from: 'bottom right',
			to:   'bottom left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image3.jpg',
			alt:  'History reports provided',
			href: 'http://www.3rockcars.ie/',
			from: 'bottom right',
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image4.jpg',
			alt:  'Competitive prices',
			href: 'http://www.3rockcars.ie/',
			from: 'bottom left',
			to:   'top right 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image5.jpg',
			alt:  'Friendly service',
			href: 'http://www.3rockcars.ie/',
			from: 'bottom left 1x',
			to:   'top right 1x',
			time: 4
		}
	], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			$caption.text(img.alt).animate({ opacity: 1 })
		} else {
			$caption.animate({ opacity: 0 })
		}
	});
	$caption.show().css({ opacity: 0 })

});

