
function MenuIn(t)
 {
  if (t.className != 'active')
   {
    t.style.color = '#000000';
    t.parentNode.style.borderBottom = '7px solid #ff6600'; // #DF1814
   }
 }

function MenuOut(t)
 {
  if (t.className != 'active')
   {
    t.style.color = '#B2B2B2';
    t.parentNode.style.borderBottom = '7px solid #E7E7E7';
   }
 }

