<!--var minspeedH = 1var maxscrollspeedH = 8var scrollspeedHvar acceleratingH = falsevar decceleratingH = falsevar accelerationH = .15var deccerationH = .2var scrollingH = false;var currentDirectionH = null;function init()  {	scrollRightArrow = document.all? parent.document.all.scrollRightArrow : parent.document.getElementById("scrollRightArrow");	scrollRightArrow.onmouseover = checkHScroll;	scrollRightArrow.onmouseout = stopHScroll;	scrollHobj=document.all? document.all.menuIFrameBorderX : document.getElementById("menuIFrameBorderX");			setScrollLeft=setTimeout("setLeft()",200);}	function setLeft()  {		thelengthH=scrollHobj.offsetWidth;	if (setScrollLeft){		clearInterval(setScrollLeft);	}}function checkHScroll() {	window.status='More...';	if(!scrollingH) {		scrollingH = true		acceleratingH = true		decceleratingH = false;		scrollspeedH = minspeedH	} else {		if (recursiveScrollH){			clearInterval(recursiveScrollH);			 		}		acceleratingH = true		decceleratingH = false;			}		scrollHorizontal(-1)	}function scrollHorizontal(directionH) {	if(scrollspeedH == null) {		//accelerating = true		//scrollspeed = minspeed	}		if(acceleratingH) {		if (scrollspeedH < maxscrollspeedH) {			scrollspeedH = scrollspeedH + accelerationH		} else {			acceleratingH = false			scrollspeedH = maxscrollspeedH		}	}		if(decceleratingH) {			if (scrollspeedH > 0) {			scrollspeedH = scrollspeedH - deccerationH		} else {					decceleratingH = false			scrollspeedH = 0			killScrollH()			return		}			}		var newPosition = parseInt(scrollHobj.style.left)+(scrollspeedH * directionH)	//alert(scrollHobj.style.left)	//return	if ( newPosition < thelengthH/2*(-1)) {		newPosition = newPosition + (thelengthH/2)	}		if (newPosition>0) {	newPosition = newPosition - (thelengthH/2)	}		scrollHobj.style.left=newPosition	recursiveScrollH=setTimeout("scrollHorizontal(" + directionH + ")",50)		}function stopHScroll() {	acceleratingH = false	decceleratingH = true	window.status=' ';	}function killScrollH()  {	if (recursiveScrollH){		clearInterval(recursiveScrollH);		recursiveScroll = null		decceleratingH = false		scrollspeedH = null		scrollingH = false			}}//-->
