function CallingMenu() {

    var t = $("#menu ul li.chck").length
    var cleanWidth = ($("#menu").width() - (t - 1) * 2)
    var width = Math.floor((cleanWidth) / t) /* count 1 li width  */

    var allLength = 0
    $("#menu ul li.chck").each(function() {
        allLength = allLength + $(this).width()
    });

    padding = Math.floor((cleanWidth - allLength) / (2 * t))

    var lastpixels = cleanWidth - allLength - (2 * t * padding)

    i = 0;
    $("#menu ul li.chck").each(function() {

        aLength = $(this).width()

        newWidth = aLength + (2 * padding)

        i = i + 1

        if (t == i) {
            newWidth = newWidth + lastpixels
        }

        $(this).width(newWidth + "px")
    });

    $("#menu ul li.chck a").each(function() {
        aLength = $(this).width()
        newWidth = aLength + (2 * padding)
        i = i + 1
        if (t == i) {
            newWidth = newWidth + lastpixels
        }
        $(this).width(newWidth + "px")

        if ($(this).attr("scrollHeight") > 50 && $(this).text().split(" ").length > 1) {
            $(this).css('line-height', '18px');
        }
        $(this).css('height', '37px');
    });
}
