	  $(document).ready(function() { 
		// Define the navigation
		$('ul.primary_nav').superfish({
		 	autoArrows:    false,  
		  	delay:    50,              // one second delay on mouseout
		  	speed:    'fast',             // faster animation speed
		  	dropShadows: false              // disable drop shadows
		});
		// apply the sfHover class to list items without nested ul
		  $('ul.primary_nav li').not(':has(ul)').hover(
			function(){ $(this).addClass('sfHover'); },
			function(){ $(this).removeClass('sfHover'); }
		  );

		/*$('ul.local_nav').superfish({
		 	autoArrows:    false,  
		  	delay:    50,              // one second delay on mouseout
		  	speed:    'fast',             // faster animation speed
		  	dropShadows: false              // disable drop shadows
		});
		 */


});

