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

	$slideShow.crossSlide({
		fade: 1
	}, [
		{
			src:  'flash/carousel/images/image1.jpg',
			alt:  'Over 50+ cars in stock',
			href: 'http://www.droughtcarsales.ie/',
			from: 'top left',			
			to:   'top right 1x',
			time: 5
		}, {
			src:  'flash/carousel/images/image2.jpg',
			alt:  'Trade-ins welcome',
			href: 'http://www.droughtcarsales.ie/',
			from: 'bottom left',
			to:   'top right 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image3.jpg',
			alt:  'Courtesy cars provided for warranty work',
			href: 'http://www.droughtcarsales.ie/',
			from: 'bottom right',
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image4.jpg',
			alt:  'Van rentals available',
			href: 'http://www.droughtcarsales.ie/',
			from: 'bottom right',
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image5.jpg',
			alt:  '20 years + motor trade experience',
			href: 'http://www.droughtcarsales.ie/',
			from: 'bottom left',
			to:   'bottom right 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image6.jpg',
			alt:  'Air conditioning specialists',
			href: 'http://www.droughtcarsales.ie/',
			from: 'bottom left',
			to:   'bottom 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 })

});

