// Category
function kadabra(zap,obj) {
 if (document.getElementById) {
  var abra = document.getElementById(zap).style;
  if (abra.display == "block") {
   abra.display = "none"; 

if(obj!='[object]'){
   obj.firstChild.src = "../images/new/ceo/ceo1.gif";;
}
   } else {
   abra.display = "block";	

if(obj!='[object]'){
    obj.firstChild.src = "../images/new/ceo/ceo2.gif";;
}
  
  }
  return false;
  } else {
  return true;
 }
}