﻿$(function () {

    $('.menu3>li>ul').each(function () {

        var offset = $(this).parent().children("a:first").offset();

        $(this).css("left", 0);
        $(this).css("top", 30);
    });

    $('.menu3>li>a').hover(function () {

        $(this).parent().children("ul:first").css("display", "block");

    }, function () {

        $(this).parent().children("ul:first").css("display", "none");

    });

    $('.menu3>li:last-child>ul').each(function () {

        var offset = $(this).parent().children("a:first").offset();

        $(this).css("left", -232 + $(this).parent().width());
        $(this).css("top", 30);
    });

    $('.menu3>li>ul').hover(function () {

        $(this).css("display", "block");

    }, function () {

        $(this).css("display", "none");

    });

});
    
