var loaded = false;





function menuOvr(src,clrOver)
{
 if (!src.contains(event.fromElement))
 {
  src.style.cursor = 'hand';
  src.bgColor = clrOver;
  //src.children.tags('A')[0].style.color = '#000000';
 }
}

function menuDwn(src,clrDwn)
{
 if (!src.contains(event.fromElement))
 {
  src.style.cursor = 'hand';
  src.bgColor = clrDwn;
  //src.children.tags('A')[0].style.color = '#FFFFFF';
 }
}

function menuOut(src,clrOut)
{
 if (!src.contains(event.toElement))
 {
  src.style.cursor = 'default';
  src.bgColor = clrOut;
  //src.children.tags('A')[0].style.color = '#000000';
 }
}


