$(document).ready(function(){
    $(function(){
        $("div#bottomnav").hover(function(){
            $('div#bottomnav_content',this).css('height', 'auto');
        }, function(){
            $('div#bottomnav_content',this).css('height', '2em');
        });
    });
});