/* Glavni padajuci meni */
dropDownMenu = function()
{
	var submenu = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<submenu.length; i++)
	{
		submenu[i].onmouseover = function()
		{
			this.className += " dropdown";
		}
		submenu[i].onmouseout = function()
		{
			this.className = this.className.replace(new RegExp(" dropdown\\b"), "");
		}
	}
}

if (window.attachEvent)
{
	window.attachEvent("onload", dropDownMenu);
}
/* Glavni padajuci meni */

/* Glavni padajuci meni */
function toggleLayer(whichLink,whichLayer,whichImage) {

	if(document.getElementById(whichLayer).style.display)
	{
		document.getElementById(whichLayer).style.display = "";
		document.images[whichImage].src = "/img/a_menull.gif";//menja ikonicu
		document.getElementById(whichImage).alt = "";//tooltip IE
		document.getElementById(whichLink).title = "";//tooltip Mozilla, Opera
	} else {
		document.getElementById(whichLayer).style.display = "none";
		document.images[whichImage].src = "/img/a_menulk.gif";//menja ikonicu
		document.getElementById(whichImage).alt = "Prikaži smerove";//tooltip IE
		document.getElementById(whichLink).title = "Prikaži smerove";//tooltip Mozilla, Opera
	}
	
	return false;
}
/* Glavni padajuci meni */
