//subMenu
$(document).ready(function(){  
   $('#top-submenu dl').hover(function(){  
   $(this).stop().animate({'opacity' : '0.75'}, 250);  
   }, function(){$(this).stop().animate({'opacity' : '1'}, 250);});  
});

