function menuhover(stan,nazwa){
  var divek=document.getElementById(nazwa);
  if(stan=="1"){
   divek.style.backgroundImage="url('res/kul2.gif')";
   divek.style.color="red";
  }
  if(stan=="0"){
   divek.style.backgroundImage="url('res/kul1.gif')";
   divek.style.color="maroon";
  }
}


