jQuery.noConflict();
						
jQuery('ul.nav').superfish({ 
	delay:       200,                            // one second delay on mouseout 
	animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
	speed:       'fast',                          // faster animation speed 
	autoArrows:  true,                           // disable generation of arrow mark-up 
	dropShadows: false                            // disable drop shadows 
});

jQuery('ul.nav > li > a.sf-with-ul').parent('li').addClass('sf-ul');
jQuery('#primary>li').not('.current-menu-item').hover(
    function(){
        jQuery(this).addClass('current-menu-item');
                },
    function(){
        jQuery(this).removeClass('current-menu-item');
            }
        );
if(jQuery('body.single').length){
    jQuery('#primary>li').eq('1').addClass('current-menu-item');
        }
