jQuery().ready(function(){

	$('#pingbacks').hide();

	$('#pingback').click(function(){

		$(this).siblings('#pingbacks').slideToggle('slow');

	});

});

sfHover = function() {

	var hoverOne = document.getElementById("page").getElementsByTagName("LI");

	var hoverTwo = document.getElementById("footer").getElementsByTagName("LI");

	for (var i=0; i<hoverOne.length; i++) {

		hoverOne[i].onmouseover=function() {

			this.className+=" sfhover";

		}

		hoverOne[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");

		}

	}

	for (var i=0; i<hoverTwo.length; i++) {

		hoverTwo[i].onmouseover=function() {

			this.className+=" sfhover";

		}

		hoverTwo[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");

		}

	}

}

if (window.attachEvent) window.attachEvent("onload", sfHover);
