﻿$(function() {
    $(".drop_down_list li ul").live("mouseout", function(e) {
        var mouseX = e.pageX;
        var mouseY = e.pageY;

        var offset = $(this).offset();
        var x = mouseX - offset.left;
        var y = mouseY - offset.top;

        if (x < 0 || y < 0 || x > $(this).width() || y > $(this).height()) {
            $(".drop_down_list li ul").css("display", "none");
        }
    });

    $(".drop_down_list li.head_link").live("click", function(e) {
        if ($('ul', this).css('display') === "none") {
            $('ul', this).css('display', 'block');
        }
        else {
            $('ul', this).css('display', 'none');
        }
    });

    $(".drop_down_list li ul li a").live("click", function(e) {
        $(this).parent().parent().css("display", "none");
    });
});
