function edit_menu(id,actions)
{
	if(actions == 0)
	{
		document.getElementById(id).style.background = "url('/img/images/inactive.png')";
	} 
	else if (actions == 1)
	{
		document.getElementById(id).style.background = "url('/img/images/active.png')";	
	} 
}


	function setMenu(id){
		document.getElementById(id).className = "on_fut";
	}
	function clearMenu(id){
		document.getElementById(id).className = "off_fut";
	}
