jQuery(document).ready(function(){ 

	jQuery("div#nav li div.flyout").css({height: 0});

    jQuery("li#navabout").mouseover(function(){  
        jQuery("li#navabout div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navabout").mouseout(function(){  
        jQuery("li#navabout div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navpreservation").mouseover(function(){  
        jQuery("li#navpreservation div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navpreservation").mouseout(function(){  
        jQuery("li#navpreservation div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navadvocacy").mouseover(function(){  
        jQuery("li#navadvocacy div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navadvocacy").mouseout(function(){  
        jQuery("li#navadvocacy div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#naveducation").mouseover(function(){  
        jQuery("li#naveducation div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#naveducation").mouseout(function(){  
        jQuery("li#naveducation div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    });
    
    jQuery("li#navquoit").mouseover(function(){  
        jQuery("li#navquoit div.flyout").stop().animate({opacity:'1', height:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navquoit").mouseout(function(){  
        jQuery("li#navquoit 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:'22em'},{queue:false, duration:300})  
    });  
    jQuery("li#navsupport").mouseout(function(){  
        jQuery("li#navsupport div.flyout").stop().animate({opacity:'0', height:'0'},{duration:300})
    }); 


});
