


jQuery(document).ready(function() {


    function menuHoverOver() {
        jQuery(this).find(".menupanel").stop().fadeTo('fast', 1).show();


    }

    function menuHoverOut() {
        jQuery(this).find(".menupanel").stop().fadeTo('fast', 0, function() {
            jQuery(this).hide();
        });
    }


    var config = {
        sensitivity: 2, // number = sensitivity threshold (must be 1 or higher)    
        interval: 100, // number = milliseconds for onMouseOver polling interval    
        over: menuHoverOver, // function = onMouseOver callback (REQUIRED)    
        timeout: 300, // number = milliseconds delay before onMouseOut    
        out: menuHoverOut // function = onMouseOut callback (REQUIRED)    
    };


    jQuery("ul#menubar li .menupanel").css({'opacity':'0'});
    jQuery("ul#menubar li").hoverIntent(config);


});
 
  jQuery(document).ready(function() {
 
    var path = window.location.pathname.toLowerCase();
   
    if (path.indexOf("/youth-development/") == 0 || path.indexOf("/our-focus/") == 0 || path.indexOf("/social-responsibility/") == 0 || path.indexOf("/global-services/") == 0 || path.indexOf("/healthy-living/") == 0 || path.indexOf("/world-service/") == 0 || path.indexOf("/world-service-photos/") == 0 || path.indexOf("/world-service-campaign/") == 0 || path.indexOf("/world-service-funded-programs/") == 0 || path.indexOf("/world-service-reports/") == 0 || path.indexOf("/military-outreach/") == 0)
    {
     
        jQuery('#menu_ourfocus').addClass('active');
    }
    else if (path.indexOf("/career-opportunities/") == 0)
    {
        jQuery('#menu_careeropportunities').addClass('active');
    
    
    }
    else if (path.indexOf("/about-us/") == 0 || path.indexOf("/history/") == 0 || path.indexOf("/find-your-y/") == 0 || path.indexOf("/donors-partners/") == 0 || path.indexOf("/find-a-y-camp/") == 0 || path.indexOf("/organizational-profile/") == 0 || path.indexOf("/volunteering/") == 0 || path.indexOf("/y-profile/") == 0)
    {
        jQuery('#menu_aboutus').addClass('active');
    
    
    }
    else if (path.indexOf("/be-involved/") == 0 || path.indexOf("/volunteer/") == 0 || path.indexOf("/start-new-y/") == 0 ||  path.indexOf("/give/") == 0 || path.indexOf("/join/") == 0 || path.indexOf("/advocate/") == 0 )
    {
        jQuery('#menu_beinvolved').addClass('active');
    
    
    }
    else if (path.indexOf("/news-media/") == 0 || path.indexOf("/stories-of-impact/") == 0 || path.indexOf("/news-releases/") == 0 ||  path.indexOf("/media-coverage/") == 0 )
    {
        jQuery('#menu_newsmedia').addClass('active');
    
    
    }
    else if (path.indexOf("/contact-us/") == 0 )
    {
        jQuery('#menu_contactus').addClass('active');
    
    
    }
    
    });
 
