// Menu
function kadabra(zap,obj) {
 if (document.getElementById) {
  var abra = document.getElementById(zap).style;
  if (abra.display == "block") {
   abra.display = "none"; 
   obj.firstChild.src = "../../images/menu_open.gif";
   } else {
   abra.display = "block";	
  obj.firstChild.src = "../../images/menu_close.gif";
  }
  return false;
  } else {
  return true;
 }
}
