﻿$(document).ready(function() {
    $("#navigator li").hover(function () { $(this).find("ul:first").show() },
                function () { $(this).find("ul:first").hide(); });
});
