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

	$slideShow.crossSlide({
		fade: 1
	}, [
		{
			src:  'flash/carousel/images/image11.jpg',
			alt:  'Best in class facilities',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top right 1x',
			time: 9
		}, {
			src:  'flash/carousel/images/image33.jpg',
			alt:  'Access to the most modern equipment',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top right 1x',
			time: 9
		}, {
			src:  'flash/carousel/images/image1.jpg',
			alt:  '4x4 specialists',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top left 1x',
			time: 5
		}, {
			src:  'flash/carousel/images/image2.jpg',
			alt:  '4x4\'s now in stock',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image3.jpg',
			alt:  'All vehicles inspected, serviced and warrantied',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image4.jpg',
			alt:  'Full workshop facilities',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image5.jpg',
			alt:  'Family run business',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top left 1x',
			time: 4
		}, {
			src:  'flash/carousel/images/image6.jpg',
			alt:  'Friendly service',
			href: 'http://www.jkellymotors.ie/',
			from: 'bottom left',			
			to:   'top left 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 })

});

