$(document).ready(function () {
   var $menu = $("#menu");
   if($menu !== null)
   {
       var h = $("#content").height()
       if(h > $menu.height())
       {
           $menu.height(h);
       }
   }
});

$(document).load(function () {
   var $menu = $("#menu");
   if($menu !== null)
   {
       var h = $("#content").height()
       if(h > $menu.height())
       {
           $menu.height(h);
       }
   }
   $('a.outlink').click(function(){
       window.open(this.href);
       return false;
   });

});