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