			window.RokSlideshowPath = '';

			var myshow;
			window.addEvent('load', function(){
				var imgs = [];

				imgs.push({
					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: ''
				});
				imgs.push({
					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: ''
				});
				imgs.push({
					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: ''
				});
				imgs.push({
					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: ''
				});
				imgs.push({
					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: '#'
				});
				imgs.push({
					file: '6.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Front View',
					desc: 'Notice the roof mounted cooling for the mid-engine configuration',
					url: '#'
				});
				imgs.push({
					file: '7.jpg',
					title: 'Audi RS8 V-12 TDI LeMans Concept - Front View',
					desc: 'Notice the roof mounted cooling for the mid-engine configuration',
					url: '#'
				});

				myshow = new Slideshow('slideshow', { 
					type: 'combo',
					showTitleCaption: 1,
					captionHeight: 1,
					width: 892, 
					height: 227, 
					pan: 50,
					zoom: 30,
					loadingDiv: 1,
					resize: true,
					duration: [2000, 9000],
					transition: Fx.Transitions.Expo.easeOut,
					images: imgs, 
					path: '/rokslideshow/images/'
				});

				myshow.caps.h2.setStyles({
					color: '#fff',
					fontSize: '13px'
				});
				myshow.caps.p.setStyles({
					color: '#ccc',
					fontSize: '11px'
				});
			});