

			window.RokSlideshowPath = '';
			window.addEvent('load', function(){
				var imgs = [
				{
					file: '1.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Front Angle View',
					desc: 'V-12 Diesel concept version based on the LeMans winning V-10 race car.',
					url: '#'
				},{ 
					file: '2.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Back Angle View',
					desc: 'More aggressive body panels gives this concept a mean look',
					url: '#'
				},{
					file: '3.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Side View',
					desc: 'THe unique orange/grey color scheme makes this concept stand out from the crowd.',
					url: '#'
				},{
					file: '4.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Front View',
					desc: 'Any lower and this RS8 would be scooping up tar as it drives down the road.',
					url: '#'
				},{
					file: '5.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Front View',
					desc: 'Notice the roof mounted cooling for the mid-engine configuration',
					url: '#'
				}];              

				var myshow = new Slideshow('slideshow', { 
					type: 'combo',
					showTitleCaption: 1,
					captionHeight: 45,
					width: 550, 
					height: 200, 
					pan: 20,
					zoom: 30,
					loadingDiv: 1,
					resize: true,
					duration: [2000, 9000],
					transition: Fx.Transitions.Expo.easeOut,
					images: imgs, 
					path: '/PublishedFiles/img/slideshow/'
				});

				myshow.caps.h2.setStyles({
					color: '#fff',
					fontSize: '13px'
				});
				myshow.caps.p.setStyles({
					color: '#ccc',
					fontSize: '11px'
				});
			});
