function menuOver(src) {
  if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  src.bgColor = '#B9D5E9';
  }
}
function menuOut(src) {
  if (!src.contains(event.toElement)) {
  src.style.cursor = 'default';
  src.bgColor = '';
  }
}
function menuClick(src) {
  if(event.srcElement.tagName=='TD'){
  src.children.tags('A')[0].click();
  }
}

function noticiasClick(src) {
  //location = 'about:blank'
}

function noticiasOver(src) {
  //src.style.cursor = 'hand';
}

function noticiasOver(src) {
  //src.style.cursor = 'default';
}


/*
function ativo(src) {

if (!src.contains(event.fromElement))
 {
  src.bgColor = '#0E3170';
 }
}
function inativo(src) {
if (!src.contains(event.toElement))
 {
  src.bgColor = '#116DB1';
 }
}
*/