$(document).ready(function() {
         $('#navi li.nav0').hover(
              function() {
                $('> ul', this).show();
              },
              function() {
                $('> ul', this).hide();
              }
           );

           if($.browser.msie && $.browser.version=="6.0"){
             $('#navi li').css('display','inline');
             $('#navi li ul').css('top','55px');
             $('#navi li').each(function(){
                 $('ul', this).css('left', ($(this).offset().left));
             });
           	 $(document).pngFix();
           }  
           
           var maxheight = $('#content-area').height();
//           if($('#content2').height() > maxheight)
//              maxheight = $('#content2').height();
           $('#content-area').height( maxheight );

});    

