// JavaScript Document
function menuup(ur) {
  self.location = ur; 
  //alert(self.location);
  return 1;
}

function menuover(nd, im) {
  nd.style.backgroundImage="url("+im+")";
  nd.style.cursor = 'pointer'
  nd.getElementsByTagName('A')[0].style.color = '#A80000';
  nd.getElementsByTagName('A')[0].style.fontWeight = 'bold'; 
  return 1;
}

function menuout(nd, im) {
  nd.style.backgroundImage="url("+im+")";
  nd.getElementsByTagName('A')[0].style.color = '#6E0000';
  nd.getElementsByTagName('A')[0].style.fontWeight = 'normal'; 
  return 1;
}
