
function sfHover() {		
	/* this allows us to set up suckerfish to be used on different pages, but only initialize once */
	var sfIDs = new Array();
	sfIDs[0] = "related";
	sfIDs[1] = "primary-nav";

	/* this just loops through all possible SF ids and initializes if the ID exists */
	for(n=0;n<sfIDs.length;n++) {
		if(document.getElementById(sfIDs[n])) {
			var sfEls = document.getElementById(sfIDs[n]).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"), "");
				}
			}
		}
	}	
}		
		
window.onload=function() {
	/*hilightLinks(); */
	if (document.all)
	{
		sfHover();
	}
	
}
