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

	$slideShow.crossSlide({
		fade: 1
	}, [
		{
			src:  'flash/carousel/images/image2.jpg',
			alt:  'Over 25 vehicles in stock',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'top left',			
			to:   'bottom left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image3.jpg',
			alt:  'All makes and models supplied',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image7.jpg',
			alt:  'All cars serviced warranted and Nct prepared',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image8.jpg',
			alt:  'Mapfre warranties available',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image20.jpg',
			alt:  'Fully equipped workshop',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image34.jpg',
			alt:  'Vehicle recovery service',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image28.jpg',
			alt:  'Wide range of cars,commercials & 4x4s',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}, {
			src:  'flash/carousel/images/image38.jpg',
			alt:  'Valeting avaialble on site',
			href: 'http://www.kieranwheltonmotors.ie/',
			from: 'bottom left',
			to:   'top left 1x',
			time: 10
		}
	], 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 })

});

