// javascript document $(document).ready(function(){ $("#nav li").hover(function(){ $(this).addclass("hover"); $(this).children('dl').show(); }, function(){ $(this).removeclass("hover"); $(this).children('dl').hide(); }); });