function markButton()
{
	menu = document.getElementById('menuTable');
	
	items = menu.rows[0].cells;
	for (i=0; i<items.length; i++ ){
	   items[i].onmouseout();
	}
	
}	




function go(url)
{
  document.location.href=url;
}





function buttonHover(butt1)
{
  //alert(butt1.id);
  butt1.className = "menu_"+butt1.id+"_p";	
};




function buttonOut(butt1,page)
{
  //alert(document.location.href +" "+ page);
  if (document.location.href.indexOf(page)>=0) 
  {
	  butt1.className = "menu_"+butt1.id+"_p";  
  }
  else
  {
	  butt1.className = "menu_"+butt1.id;
  }
     	
};

