$('dl').hide(); $(function () { $("li.mainmenu").mouseover(function () { $(this).children("dl").show(); }) })
$(function () { $("li.mainmenu").mouseout(function () { $(this).children("dl").hide(); }) })