		// (C) 2000 www.CodeLifter.com
		// http://www.codelifter.com
		// Free for all users, but leave in this header
		// NS4-6,IE4-6
		// Fade effect only in IE; degrades gracefully
		// =======================================
		// set the following variables
		// =======================================
  
		// Set slideShowSpeed (milliseconds)
		var slideShowSpeed = 5000
  
		// Duration of crossfade (seconds)
		var crossFadeDuration = 3
  
		// Specify the image files
		var Pic = new Array() // don't touch this
  
		// to add more images, just continue
		// the pattern, adding to the array below
  
		Pic[0] = 'cars/1.jpg';
		Pic[1] = 'cars/2.jpg';
		Pic[2] = 'cars/3.jpg';
		Pic[3] = 'cars/4.jpg';
		Pic[4] = 'cars/5.jpg';
		Pic[5] = 'cars/6.jpg';
  
		// =======================================
		// do not edit anything below this line
		// =======================================
		var t

		var j1 = 1
		var j2 = 3
		var j3 = 0
		var j4 = 5
		var j5 = 2
		var j6 = 4

		var p = Pic.length
		var preLoad = new Array()
		for (i = 0; i < p; i++) {
			preLoad[i] = new Image()
			preLoad[i].src = Pic[i]
		}
  
		function runSlideShow() {
			if (document.images && typeof(document.images.SlideShow1.style.filter) != 'undefined') {
				// Image 1
				document.images.SlideShow1.style.filter="blendTrans(duration=2)"
				document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow1.filters.blendTrans.Apply()      
				// Image 2
				document.images.SlideShow2.style.filter="blendTrans(duration=2)"
				document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow2.filters.blendTrans.Apply()      
				// Image 3
				document.images.SlideShow3.style.filter="blendTrans(duration=2)"
				document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow3.filters.blendTrans.Apply()      
				// Image 4
				document.images.SlideShow4.style.filter="blendTrans(duration=2)"
				document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow4.filters.blendTrans.Apply()      
				// Image 5
				document.images.SlideShow5.style.filter="blendTrans(duration=2)"
				document.images.SlideShow5.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow5.filters.blendTrans.Apply()      
				// Image 6
				document.images.SlideShow6.style.filter="blendTrans(duration=2)"
				document.images.SlideShow6.style.filter="blendTrans(duration=crossFadeDuration)"
				document.images.SlideShow6.filters.blendTrans.Apply()      
		}
		document.images.SlideShow1.src = preLoad[j1].src
		document.images.SlideShow2.src = preLoad[j2].src
		document.images.SlideShow3.src = preLoad[j3].src
		document.images.SlideShow4.src = preLoad[j4].src
		document.images.SlideShow5.src = preLoad[j5].src
		document.images.SlideShow6.src = preLoad[j6].src
		if (document.images&& typeof(document.images.SlideShow1.filters) != 'undefined') {
			document.images.SlideShow1.filters.blendTrans.Play()
			document.images.SlideShow2.filters.blendTrans.Play()
			document.images.SlideShow3.filters.blendTrans.Play()
			document.images.SlideShow4.filters.blendTrans.Play()
			document.images.SlideShow5.filters.blendTrans.Play()
			document.images.SlideShow6.filters.blendTrans.Play()
		}

		// Image 1
		j1 = j1 + 1
		if (j1 > (p-1)) j1=0

		// Image 2
		j2 = j2 + 1
		if (j2 > (p-1)) j2=0

		// Image 3
		j3 = j3 + 1
		if (j3 > (p-1)) j3=0

		// Image 4
		j4 = j4 + 1
		if (j4 > (p-1)) j4=0

		// Image 5
		j5 = j5 + 1
		if (j5 > (p-1)) j5=0

		// Image 6
		j6 = j6 + 1
		if (j6 > (p-1)) j6=0

		t = setTimeout('runSlideShow()', slideShowSpeed)
	}

	function MM_findObj(n, d) {
		var p,i,x;
		if(!d) d=document; 
		if((p=n.indexOf("?"))>0&&parent.frames.length) {
			d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);
		}
		if(!(x=d[n])&&d.all) x=d.all[n]; 
		for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
		for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
		if(!x && d.getElementById) x=d.getElementById(n); 
		return x;
	}
  
	function MM_swapImage() {
		var i,j=0,x,a=MM_swapImage.arguments; 
		document.MM_sr=new Array; 
		for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; 
		if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
	}
  
	function MM_swapImgRestore() {
		var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
	}
  
	function MM_preloadImages() {
		var d=document; 
		if(d.images) { 
			if(!d.MM_p) d.MM_p=new Array();
			var i,j=d.MM_p.length,a=MM_preloadImages.arguments; 
			for(i=0; i<a.length; i++) if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}
		}
	}

