
/*--------------------------------------------------------------------------------------------------*/
/* NAVIGATION FUNCTION CALLS 
/*--------------------------------------------------------------------------------------------------*/

(function($){

/* MAIN NAV HOVER INTENT & FADE-IN EFFECT */
	$(document).ready(function() { 
		$('ul.sf-menu').superfish({
			delay: 250,			// speed of delay on mouseout (milliseconds)	
			animation: {opacity:'show'}, 	// fade-in animation 
			speed: 250, 		// speed of animation (milliseconds)
			autoArrows: false,	// disable generation of arrow mark-up 
			dropShadows: false	// visibility of drop shadows 
		}).find('ul').bgIframe({opacity:false});
	}); 

/* SUB NAV */
	$(document).ready(function() {
		$('.subnav-menu li ul li strong').parent().parent().css('display','block'); // show the <ul> to display the current page's siblings
	});

})(jQuery);

