//Horizontal Scroller

var ScrollerSpeed=2,CurrentSpeed=ScrollerSpeed,ContentWidth,ScrollContent_h,ScrollerWidth
function ScrollInit_h(){
	try{
		ScrollContent_h=document.getElementById("ScrollContent_h");
		ScrollerWidth=document.getElementById("ScrollerOver").offsetWidth;
		ScrollContent_h.style.right=parseInt(ScrollerWidth)+6+"px";
		document.getElementById("ScrollerBody").style.display="block";
		ContentWidth=document.getElementById("ScrollContent_h").offsetWidth;
		IntTime=setInterval("ScrollIt_h()",30);		
	}catch(err){
		//alert(err.message);
		//Scroller load error
	}
}
function ScrollIt_h(){
    //alert(ScrollContent_h.style.right);
    //alert(ContentWidth);
	if (parseInt(ScrollContent_h.style.right)>(ContentWidth*(-1)+1)){
		ScrollContent_h.style.right=parseInt(ScrollContent_h.style.right)-CurrentSpeed+"px";
	}else{
		ScrollContent_h.style.right=parseInt(ScrollerWidth)+1+"px";
	}
}
document.onload=ScrollInit_h();

