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

	$slideShow.crossSlide({
		fade: 1
	}, [
		{
			src:  'flash/carousel/images/image1.jpg',
			alt:  'Over 60 cars in stock',
			href: 'http://www.liambuckleycarsales.com/',
			from: 'bottom left',			
			to:   'top right 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image2.jpg',
			alt:  'Just over 1 hour from Dublin and 30 mins from Limerick',
			href: 'http://www.liambuckleycarsales.com/',
			from: 'top left',
			to:   'bottom right 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image3.jpg',
			alt:  'All cars serviced & Nct prepared',
			href: 'http://www.liambuckleycarsales.com/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image4.jpg',
			alt:  'All makes & models new & used supplied',
			href: 'http://www.liambuckleycarsales.com/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 8
		}
	], 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 })

});

