		tmHover = function() {
			var sfEls = document.getElementById("topmenu").getElementsByTagName("LI");
			for (var i=0; i<sfEls.length; i++) {
				sfEls[i].onmouseover=function() {
					this.className+=" tmhover";
				}
				sfEls[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" tmhover\\b"), "");
				}
			}
		}
		if (window.attachEvent) window.attachEvent("onload", tmHover);

		lmHover = function() {
			var lmEls = document.getElementById("leftmenu").getElementsByTagName("LI");
			for (var i=0; i<lmEls.length; i++) {
				lmEls[i].onmouseover=function() {
					this.className+=" lmhover";
				}
				lmEls[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" lmhover\\b"), "");
				}
			}
		}
		if (window.attachEvent) window.attachEvent("onload", lmHover);
		
		
		
		function CreateBookmarkLink() {
			title="Pjenušava stranica"; url="http://www.pivnica.net/";
			if (window.sidebar) { // Mozilla Firefox Bookmark
				window.sidebar.addPanel(title, url,"");
			} else if( window.external ) { // IE Favorite
				window.external.AddFavorite( url, title); }
			else if(window.opera && window.print) { // Opera Hotlist
				return true; }
	 	}			
