$(document).ready(function () {
$("a.lv1.parent").mouseover(function () {
$(this).next("div.submenu").fadeIn("fast");
});
$("div.submenu").mouseout(function (event) {
if ( $(event.relatedTarget).closest("div.submenu").length !== 0 )
return;
$(this).fadeOut('fast');
});
});