// JavaScript Document

//Scrolling menues
function ScrollMenus(){
	ScrollMenu("menu", "out", 0);//move top menu left
	ScrollMenu("nav3_slide", "out", 200);//move bottom menu right
}
function ScrollMenu(strMenu, strDirection, intDelay) {
	var strPosition	= "0px";
	var intDuration	= 1000;
	if(strDirection=="out") {
		intDuration = 1;
		if(strMenu=="menu") strPosition = "-960px";
		else strPosition = "950px";
	}
	$("#"+strMenu).animate({ 
		left: strPosition
	}, intDuration);
	
	//bring back in
	if(strDirection=="out") setTimeout('ScrollMenu("'+strMenu+'", "in")', intDelay);
}
