//Script clears secondary bar of current section items when hovering over another main menu item
$(document).ready(function() { //waits until page is loaded
 	$("ul.sf-navbar > li:not(.current)").hover(function() { //find first child li of ul.sf-navbar that is not active
		$("ul.sf-navbar li.current ul:first").css ("top","-999em");//on hover hide active secondary menu items 
	}, function() {
		$("ul.sf-navbar li.current ul:first").css ("top","24px");//on hover out show active secondary menu items
	});
}); 
