		function setSettings()
		{
			new Menu(document.getElementById("midmenu"), null, null);
			if (typeof document.body.style.maxHeight == "undefined") {
				document.getElementById("ie6news1").style.margin = "30px 0px 0px 0px";
				document.getElementById("ie6news2").style.margin = "30px 0px 0px 0px";
				document.getElementById("fpinput").style.width = "152px";
			}
			if(navigator.userAgent.indexOf("Firefox")!=-1){
				document.getElementById("uporabnik").style.height = "18px";
				document.getElementById("searchsubmit").style.margin = "-5px 0px";
			}
		}	
		function LoadContent(url){
			
		}
		function swapContent(o1, o2) {
			if (o1 == 'infoOtocek_default' && o2 != "") // zamenjaj default z url-jem iz o2
			{
				obj1 = document.getElementById(o1);
				obj2 = document.getElementById('infoOtocek_dinamicen');
				if (obj1 != null && obj2 != null)
				{
					LoadContent(o2);
					obj1.style.display = "none";
					obj2.style.display = "block";
					document.body.focus();
				}
			}
			else
			{
				obj1 = document.getElementById('infoOtocek_dinamicen');
				obj2 = document.getElementById('infoOtocek_default');
				if (obj1 != null && obj2 != null)
				{
					LoadContent(o2);
					obj1.style.display = "none";
					obj2.style.display = "block";
				}
			}
		}
		
		
		
		/* <AJAX za prvo stran> */
		
		var xmlHttp
		  
		function LoadContent(url)
		{
			if (url.length==0)
			{ 
			document.getElementById("infoOtocek_dinamicen").innerHTML=""
			return
			}
		  
			xmlHttp=GetXmlHttpObject()
		  
			if (xmlHttp==null)
			{
			alert ("Browser does not support HTTP Request")
			return
			}
		    
			url=url+"?sid="+Math.random()
			xmlHttp.onreadystatechange=stateChanged 
			xmlHttp.open("GET",url,true)
			xmlHttp.send(null)
		} 
		  
		function stateChanged() 
		{ 
			if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
			{ 
				document.getElementById("infoOtocek_dinamicen").innerHTML=xmlHttp.responseText 
			} 
		} 
		  
		function GetXmlHttpObject()
		{ 
			var objXMLHttp=null
			if (window.XMLHttpRequest)
			{
			objXMLHttp=new XMLHttpRequest()
			}
			else if (window.ActiveXObject)
			{
			objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
			}
			return objXMLHttp
		} 
		
		/* </AJAX za prvo stran> */
		
		function showFrontPageMenu(obj){}
