// JScript File
sfHover = function() {
	var sfEls = document.getElementById("menu").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);


function shareFacebook(strArtUrl,strArtTitle)
{var tmpUrl = encodeURIComponent(strArtUrl);var tmpTitle = encodeURIComponent(strArtTitle);window.open("http://www.facebook.com/sharer.php?u=" + tmpUrl + "&t=" + tmpTitle, "Facebook", "width=645,height=436,location=0,menubar=0,resizabl=1,scrollbars=0,status=0,toolbar=0");}

