	/*
	 *	Modified Conveyor belt slideshow script- 
	 *	© Dynamic Drive (www.dynamicdrive.com)
	 *	For full source code, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com
	 */
	
	/*
		//Specify the slider's width (in pixels)
		var sliderwidth="500px"
		
		//Specify the slider's height
		var sliderheight="500px"
		
		//Specify the slider's slide speed (larger is faster 1-10)
		var slidespeed=1
		
		//configure background color:
		slidebgcolor="#FFFFFF"
		
		//Specify the slider's images
		var updownslide=new Array()
		var finalslide=''
		updownslide[0]='<a href="#"><img src="00MAR00512.jpg" border="0"></a><br>'
		updownslide[1]='<a href="#"><img src="00MAR00879.jpg" border="0"></a><br>'
		updownslide[2]='<a href="#"><img src="00STF00011.jpg" border="0"></a><br>'
		updownslide[3]='<a href="#"><img src="10XHO00108.jpg" border="0"></a><br>'
		updownslide[4]='<a href="#"><img src="20OPT00519.jpg" border="0"></a><br>'
		updownslide[5]='<a href="#"><img src="31MAR00104.jpg" border="0"></a><br>'
		updownslide[6]='<a href="#"><img src="31MAR00216.jpg" border="0"></a><br>'
		updownslide[7]='<a href="#"><img src="33DAN00205.jpg" border="0"></a><br>'
		updownslide[8]='<a href="#"><img src="33DOM00213.jpg" border="0"></a><br>'
	*/	
		
	////NO NEED TO EDIT BELOW THIS LINE////////////
	
	var copyspeed=slidespeed;
	updownslide='<nobr>'+updownslide.join(" ").replace(/&lt;/g,"<")+'</nobr>';
	var iedom=document.all||document.getElementById;
//	if (iedom)
		document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-9000px;left:-100px">'+updownslide+'</span>');
		
	var actualheight='';
	var cross_slide, ns_slide;
	
	function fillup(){
		//if (iedom){
			cross_slide	= document.getElementById("test2");
			cross_slide2= document.getElementById("test3");
			cross_slide.innerHTML=cross_slide2.innerHTML=updownslide;
			actualheight=document.all? cross_slide.offsetHeight : document.getElementById("temp").offsetHeight;
			cross_slide2.style.top=actualheight+"px";
		//}
		window.status = actualheight;
		lefttime=setInterval("slideup()",30);
	}
	window.onload=fillup;

	function slideup() {
		//if (iedom) {
			if (parseInt(cross_slide.style.top)>(actualheight*(-1)+8)) {
				cross_slide.style.top=parseInt(cross_slide.style.top)-copyspeed+"px";
			} else {
				cross_slide.style.top=parseInt(cross_slide2.style.top)+(actualheight-1)+"px";
			}
			
			if (parseInt(cross_slide2.style.top)>(actualheight*(-1)+8)) {
				cross_slide2.style.top=parseInt(cross_slide2.style.top)-copyspeed+"px";
			} else {
				cross_slide2.style.top=parseInt(cross_slide.style.top)+(actualheight-1)+"px";
			}
			
		//}

    }
    //if (iedom||document.layers ){
       /* with (document) {
            document.write('<table style="border: none; height: 100%;" cellspacing="0" cellpadding="0" id="scrolltable"><tr><td>');
            if (iedom){
                write('<div style="position:relative;width:'+sliderwidth+';height:100%;overflow:hidden">');
                write('<div style="position:absolute;width:'+sliderwidth+';height:100%;background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">');
                write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>');
                write('<div id="test3" style="position:absolute;left:0px;top:-1000px"></div>');
                write('</div></div>');
            }
            document.write('</td></tr></table>')
        }*/
//    }