jQuery(document).ready(function(){ 

	jQuery("div#nav li div.flyout").css({height: 0});

    jQuery("li#navexplore").mouseover(function(){  
    	jQuery("li#navexplore div.flyout").stop().animate({opacity:'1', height:'160px'},{queue:false, duration:300})  
    });  
    jQuery("li#navexplore").mouseout(function(){  
        jQuery("li#navexplore div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navpreserve").mouseover(function(){  
    	jQuery("li#navpreserve div.flyout").stop().animate({opacity:'1', height:'160px'},{queue:false, duration:300})  
    });  
    jQuery("li#navpreserve").mouseout(function(){  
        jQuery("li#navpreserve div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
		
		jQuery("li#navsupport").mouseover(function(){  
    	jQuery("li#navsupport div.flyout").stop().animate({opacity:'1', height:'160px'},{queue:false, duration:300})  
    });  
    jQuery("li#navsupport").mouseout(function(){  
        jQuery("li#navsupport div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navget_involved").mouseover(function(){  
    	jQuery("li#navget_involved div.flyout").stop().animate({opacity:'1', height:'160px'},{queue:false, duration:300})  
    });  
    jQuery("li#navget_involved").mouseout(function(){  
        jQuery("li#navget_involved div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navlearn").mouseover(function(){  
        jQuery("li#navlearn div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navlearn").mouseout(function(){  
        jQuery("li#navlearn div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navshop").mouseover(function(){  
        jQuery("li#navshop div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navshop").mouseout(function(){  
        jQuery("li#navshop div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    }); 
    
    


});
