﻿$(function () {
    $(".mainmenu li").bind("click", function (event) {
        if ($("a:first", this).attr("href") != "#") {
            event.stopPropagation();
            return;
        }

        if (!$("ul:first", this).is(":hidden")) {
            //$("a:first", this).removeClass("active")
            $("ul", this).hide();
        }
        else {
            if ($("ul:first", this).hasClass("hide2")) {
                $("ul:first", this).addClass("ul2")
            }
            //$("a:first", this).addClass("active")
            $("ul:first", this).show();
        }

        event.stopPropagation();
    })
})



