jQuery(function($) {
    $('#header .inner ol li,div.corpInfo ul,div.contribute ul').hover(function() {
        $('div.corpInfo,div.contribute', this).fadeIn('fast');
    }, function() {
        $('div.corpInfo,div.contribute', this).fadeOut('fast');
    });	
});
