function MenuOver(id)
{
mcancelclosetime();
m6 = document.getElementById(id);
m6.style.backgroundColor='#DE0023';
m6.style.fontWeight='bold'; 
}

function MenuOut(id)
{
mclosetime();
m6 = document.getElementById(id);
m6.style.backgroundColor='';
m6.style.fontWeight='';
}