<!--
	sfHover = function() {
		var sfEls = document.getElementById("menu-top-list").getElementsByTagName("li");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
	if (window.attachEvent) window.attachEvent("onload", sfHover);
	
	// social bookmarks (filip)
	this.page = new function() {
	  this.url = encodeURIComponent(window.location);
	  this.title = encodeURIComponent(document.title);
	};
	
	function toggleSocialBookmarks(forceClose) {
		if (forceClose != true) {
			forceClose = false;
		} else {
			document.getElementById("tipBox").style.display = 'none';
			return false;
		}
		
		var d = document.getElementById("tipBox").style.display;
		if (d == '' || d == 'none') {
			document.getElementById("tipBox").style.display = 'block';
		} else {
			document.getElementById("tipBox").style.display = 'none';
		}

	}
// -->

