// JavaScript Document
    function rollBGColor(id,what,css){
        if (what){
            document.getElementById("menu"+id).style.backgroundColor = "#FFFFFF";
            document.getElementById("img"+id).src = "img/"+id+"_on.gif";
        }else{
			if (css==1) {
				document.getElementById("menu"+id).style.backgroundColor = "#874018";
				document.getElementById("img"+id).src = "img/"+id+"_off.gif";
			}else{
				document.getElementById("menu"+id).style.backgroundColor = "#ECCA5E";
				document.getElementById("img"+id).src = "img/"+id+"_off.gif";
			}
        }
    }

    function rollBGColorEn(id,what,css){
        if (what){
            document.getElementById("menu"+id).style.backgroundColor = "#FFFFFF";
            document.getElementById("img"+id).src = "img/"+id+"_on_en.gif";
        }else{
			if (css==1) {
				document.getElementById("menu"+id).style.backgroundColor = "#874018";
				document.getElementById("img"+id).src = "img/"+id+"_off_en.gif";
			}else{
				document.getElementById("menu"+id).style.backgroundColor = "#ECCA5E";
				document.getElementById("img"+id).src = "img/"+id+"_off_en.gif";
			}
        }
    }
