
sfHover = function() {
	if (document.getElementById("MENU")){
		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 takePhoto()
{
	
	photo_src = $("#profile-image").attr('src');
	photo = photo_src.replace("_bigger", "_normal");
	
	
	$("profile-image").attr("src",photo);
	$("#profile-image").css("width","48px");
	$("#profile-image").css("height","48px");
	$('#user_91368172').children('h2').children('a').attr('href','http://www.twitter.com/jpbrun');	
}
*/




