﻿$(document).ready(function () {
    $("li.mainitem", document).hover(function () {
        $("ul", this).show();
    }, function () {
        $("ul", this).hide();
    });
});
