// JavaScript Document
function active_menu(id)
{
var o=document.getElementById(id);

if(o==null) return;

o.className ='changehmenu';
delCookie("hmenu")
}
active_menu(getCookie("hmenu"));
