function onMenu(t, file, height)
{
   $('.menu-selected').removeClass('menu-selected' );
   
   $(t).addClass( 'menu-selected' );
   
   $('#rhs').fadeOut(500, function(){
   
      $(this).load( file, {}, function(){
      
         $(this).fadeIn( 500 );
         // $(this).animate( { height : height, opacity : 1 }, 500 );
      
      } );
   
   } );
}
