// Java Scripts

			var slideShowSpeed = 5000
			var crossFadeDuration = 3
			var Pic = new Array() // don't touch this
				
			Pic[0] = 'slideshow/1.jpg'
			Pic[1] = 'slideshow/2.jpg'
			Pic[2] = 'slideshow/3.jpg'
			Pic[3] = 'slideshow/4.jpg'
			Pic[4] = 'slideshow/5.jpg'
			Pic[5] = 'slideshow/6.jpg'
			Pic[6] = 'slideshow/7.jpg'
			Pic[7] = 'slideshow/8.jpg'
			Pic[8] = 'slideshow/9.jpg'
			Pic[9] = 'slideshow/10.jpg'
				
			var t
			var j = 0
			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.all){
					document.images.SlideShow.style.filter="blendTrans(duration=2)"
					document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
					document.images.SlideShow.filters.blendTrans.Apply()      
					}
				document.images.SlideShow.src = preLoad[j].src
				if (document.all){
					document.images.SlideShow.filters.blendTrans.Play()
				   	}
				j = j + 1
				if (j > (p-1)) j=0
				  	t = setTimeout('runSlideShow()', slideShowSpeed)
					}
					

function clickIE4(){
if (event.button==2){
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("return false")
