



sfHover = function(elem) {
	var sfEls = document.getElementById(elem).getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
//			this.className+=" sfhover";
//			$(this).addClass(this.className+"-sfhover");
			$(this).addClass($(this).attr('id')+"-sfhover");
			$(this).addClass('sfhover');
		}
		sfEls[i].onmouseout=function() {
			$(this).removeClass($(this).attr('id')+"-sfhover");		
			//this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			$(this).removeClass('sfhover');
		}
	}
}

function init_lists() {
	sfHover('primaryNav');
	sfHover('takeActionNav');
}

if (window.attachEvent) window.attachEvent("onload", init_lists);



