// Customs
var $j = jQuery.noConflict();
jQuery(document).ready(function(j) {
	// Main navigation dropdowns
	$j('ul.menu-nav').superfish({
		delay:       400,                            // one second delay on mouseout
		animation:   { height:'show' },              // fade-in and slide-down animation
		speed:       'fast',                         // faster animation speed
		autoArrows:  false,                           // disable generation of arrow mark-up
		disableHI:   true,
		dropShadows: false                           // disable drop shadows
	});
});
