/***********************************************
* Scrollable Menu Links- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/

var actualwidth=''
var cross_scroll
var loadedyes=0

function fillup(){
	cross_scroll=document.getElementById("test2")
	actualwidth=document.getElementById("temp").offsetWidth
	loadedyes=1
}

function moveleft(){
	if (loadedyes){
		if (parseInt(cross_scroll.style.left)>(menuwidth-actualwidth)){
			cross_scroll.style.left=parseInt(cross_scroll.style.left)-scrollspeed+"px"
		}
	}
	lefttime=setTimeout("moveleft()",1)
}

function moveright(){
	if (loadedyes){
		if (parseInt(cross_scroll.style.left)<0){
			cross_scroll.style.left=parseInt(cross_scroll.style.left)+scrollspeed+"px"
		}
	}
	righttime=setTimeout("moveright()",1)
}
