function on (id, img)
{
	//document.getElementById(id).background = "/images/menu_bg1_on.gif";
	document.getElementById(id).className = "menuon";
	//img.src = '/images/menu_strelka.gif';
}
function out (id, img)
{
	//document.getElementById(id).background = "/images/menu_bg1.gif";
	document.getElementById(id).className = "menuout";
	//img.src = '/images/dot.gif';
}
function formon (id)
{
	document.getElementById(id).className = "inputon";
}
function formout (id)
{
	document.getElementById(id).className = "input";
}
