 var gtm;
$(document).ready(
    function () {
        $("li.parent > ul").hide();

        $("li.parent").mouseover(
            function () {
                clearTimeout(gtm);

                $("ul.subnav76").hide();

                $(this).children("ul.subnav76").show();
                //this must be repeated
                $(this).children("ul.subnav76").css({ position: "absolute", top: $(this).offset().top + 20, left: $(this).offset().left + 28 });
                $(this).children("ul.subnav76").css({ position: "absolute", top: $(this).offset().top + 20, left: $(this).offset().left + 28 });
            }
        );

        $("li.parent").mouseout(
            function () {
                gtm = setTimeout(function() { $("ul.subnav76").hide(); }, 700

);
            }
        );
    }
);