$(function(){
   $('#brand-tray ul li').hover(
   function(){
      $(this).children('ul').fadeIn('fast');
      $(this).addClass("over").fadeIn('slow');
   },
   function(){
      $(this).not(".on").children('ul').fadeOut('fast');
      $(this).removeClass("over");   
   }    
   );
});
