
	var ie=(document.all)?1:0; //Ckeck for ie or ns
	var top=440;	      // Top position	
	var pix = 3;          // number of pixels to move per frame
	var rate = 25;       // frames per second
	var ImgWidth = 460;   // width of scroll image
	var time = 2025/rate;
	var again = - ImgWidth
	var windowbgcolor="#Ffffff"; //window background color(bgcolor)
	
	document.write("<style>#main{POSITION:absolute;LEFT:552px;TOP:"+top+"px;WIDTH:449px;height:133;z-index:100;border-width:0;border-color:black;border-style:solid;overflow:hidden;}#Layer1{POSITION:absolute;LEFT:0px;TOP:0px;WIDTH:420px;height:133;}#Layer2{POSITION:absolute;LEFT:1521px;TOP:0px;WIDTH:440px;height:133;}#hidelayer{position:absolute;left:0;top:"+top+";z-index:200;}</style>");
	function scroll(){if(ie){Layer1.style.pixelLeft=Layer1.style.pixelLeft-pix;Layer2.style.pixelLeft=Layer2.style.pixelLeft-pix;}if(!ie){document.main.document.Layer1.left=document.main.document.Layer1.left-pix;document.main.document.Layer2.left=document.main.document.Layer2.left-pix;}if(ie){if(Layer1.style.pixelLeft <= again) Layer1.style.pixelLeft= ImgWidth;if(Layer2.style.pixelLeft <= again) Layer2.style.pixelLeft= ImgWidth;}if(!ie){if(document.main.document.Layer1.left <= again) document.main.document.Layer1.left= ImgWidth;if(document.main.document.Layer2.left <= again) document.main.document.Layer2.left= ImgWidth;}setTimeout('scroll()', time);}
	document.write("<div id='main'><div id='Layer1'><img name='img1' src='images/machine_display.jpg' width=460 height=131 border=0 usemap='#scroll1'></div><div id='Layer2'><img name='img2' src='images/machine_display1.jpg' width=460 height=131 border=0 usemap='#scroll1'></div></div>");
	
	if(ie){Layer2.style.pixelLeft=460;}
	else {if(window.innerWidth>556){var w=window.innerWidth-420;var h=133;document.write("<div id='hidelayer'><table cellspacing=0 cellpadding=0 border=0 bgcolor='"+windowbgcolor+"'><tr><td height='"+h+"' width='"+w+"'>&nbsp;</td></tr></table></div>");document.layers['hidelayer'].left=420;}};
	scroll();


function fnstop(){pix=0;}
function fnstart(){pix=3;}
document['img1'].onmouseover = fnstop;
document['img1'].onmouseout = fnstart;
document['img2'].onmouseover = fnstop;
document['img2'].onmouseout = fnstart;

