function changeColor(menuid) {
	document.getElementById(menuid).className="topmenu_over";
}
function changeColorSub(menuid) {
	document.getElementById(menuid).className="submenu_over";
}

function changeBack(menuid) {
	document.getElementById(menuid).className="topmenu";
}

function changeBackSub(menuid) {
	document.getElementById(menuid).className="submenu";
}


function leftON(menuid) {
	document.getElementById(menuid).className="topmenu";
}

function changeLeft(menuid) {
	document.getElementById(menuid).className="leftmenu-bg-on";	
	document.getElementById("Text"+menuid).className="leftmenu_on";
	document.getElementById("Arrow"+menuid).className="leftmenu_on";
}
function changeLeftBack(menuid) {
	document.getElementById(menuid).className="leftmenu-bg-off";
	document.getElementById("Text"+menuid).className="leftmenu";
	document.getElementById("Arrow"+menuid).className="leftmenux";
}