﻿$(function() {
    $(".jparentmenu").hover(function() {
        $(this).find(".jpopupmenu").show("fast");
    },
    function() {
        $(this).find(".jpopupmenu").hide("fast");
    });
});