function menuhover(stan,nazwa,i,tekst){

 var divek=document.getElementById('podpismenu');
  var belka=document.getElementById(nazwa);

 divek.controlContainer=divek;

  if(stan=="over"){
   belka.style.backgroundImage="url('res/bar1light.gif')";
     belka.style.fontWeight="bold";
   divek.style.left=i;
   divek.style.visibility='visible';
   divek.innerHTML=tekst;
  }
  if(stan=="out"){
   belka.style.backgroundImage="url('res/bar1.gif')";
   belka.style.fontWeight="normal";
  divek.style.left=0;
  divek.style.visibility='hidden';
  divek.innerHTML='';
  }
}

function dlmenuhover(stan,nazwa){

  var belka=document.getElementById(nazwa);


  if(stan=="over"){
   belka.style.backgroundImage="url('dni/jpg/mm2.jpg')";
  }
  if(stan=="out"){
   belka.style.backgroundImage="url('dni/jpg/mm1.jpg')";
  }
}

function dlsmenuhover(stan,nazwa){

  var belka=document.getElementById(nazwa);


  if(stan=="over"){
   belka.style.backgroundImage="url('dni/jpg/sm2.jpg')";
  }
  if(stan=="out"){
   belka.style.backgroundImage="url('dni/jpg/sm1.jpg')";
  }
}


function lphover(stan,nazwa){


  var belka=document.getElementById(nazwa);


  if(stan=="over"){
    belka.style.backgroundImage="url('res/ng2.png')";
	 belka.style.color="white";
  }
  if(stan=="out"){

    belka.style.backgroundImage="url('res/ng1.png')";
	 belka.style.color=""; 
  }
}

