  function menu_on(obiekt)
  {
  		obiekt.className = "aktywne";
        //obiekt.style.backgroundColor="#FFFFCC";
    	//obiekt.style.borderColor="#9AB1A3";
  }

  function menu_off(obiekt)
  {
  		obiekt.className = "nieaktywne";
        //obiekt.style.backgroundColor="transparent";
    	//obiekt.style.borderColor="#FFFFCC";		                
  }

