// JavaScript Document

function overMenu(id){
	document.getElementById("menu"+id).style.backgroundColor="#fcdf7e";
	document.getElementById("lnk_menu"+id).style.color="#005596";
}

function outMenu(id){
	document.getElementById("menu"+id).style.backgroundColor="#005596";
	document.getElementById("lnk_menu"+id).style.color="#fff";
}
