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

	$slideShow.crossSlide({
		fade: 1
	}, [
		{
			src:  'flash/carousel/images/image1.jpg',
			alt:  'All stock inspected',
			href: 'http://www.patwhitecars.ie/',
			from: 'top left',			
			to:   'bottom left 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image2.jpg',
			alt:  'All stock serviced',
			href: 'http://www.patwhitecars.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image3.jpg',
			alt:  'All stock NCT\'d',
			href: 'http://www.patwhitecars.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image4.jpg',
			alt:  'Competitive prices',
			href: 'http://www.patwhitecars.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 8
		}, {
			src:  'flash/carousel/images/image4.jpg',
			alt:  'Full dealer facilities',
			href: 'http://www.patwhitecars.ie/',
			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 })

});

