function menuOver(obj, over) {
  var cur = obj.style.backgroundColor
  var n = over == true ? "navy" : "#99ccff";
  var a; 
  if (n != cur) {
    obj.style.backgroundColor = n;
    obj.style.cursor = over == true ? "hand" : "auto";
    a = obj.getElementsByTagName("A");
    a[0].style.color = over == true ? "white" : "black";
  }
}

function menuClick(which) {
  var u;
  if (which == 1) u = "search.pl";
  else if (which == 2) u = "search-action.pl";
  else if (which == 3) u = "sell.html";
  else if (which == 4) u = "buy.html";
  else if (which == 5) u = "faq.html";
  else if (which == 6) u = "about.html";
  else if (which == 7) u = "contact.html";
  else if (which == 'ca') u = "calculate.html";
  else if (which == 'va') u = "vaaloewer.html";
  else u = "index.html";
  location = u;
  return false;
}

function quickSearch(obj) {
  var n;
  n = obj.selectedIndex;
  if (n > 0) {
     obj.form.submit();
  }
}