//ZMĚNA OBRÁZKŮ PO PŘEJETÍ MYŠI
function preload()
{
	if (document.images)
	{	
		document.pole=new Array();
		for (i=0; i<preload.arguments.length; i++)
		{ document.pole[i]=new Image();
		  document.pole[i].src=preload.arguments[i];
		}	
	}
}

function zmena()
{
	if (document.images)
	{	
		for (i=0; i<zmena.arguments.length; i++) document.images[zmena.arguments[i]].src=zmena.arguments[++i];
	}
}

//STAVOVÝ ŘÁDEK PODLE MENU
//Toto treba vzdy urcit - počet menu
    
	var PocetMenu = 2;
	
	function Show(CisMenu)
	  {
	    var menu=document.getElementById("menu"+CisMenu);
	    menu.style.visibility="visible";
	  }

	 function Hide()
      {
	    var menu, i;
            for(i=1; i<=PocetMenu; i++)
            {
	    	menu=document.getElementById("menu"+i);
		    menu.style.visibility="hidden";
		    }
	  }

