﻿$(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
        {
            //$("a:first", this).addClass("active")
            $("ul:first", this).show();
        }

        event.stopPropagation();
    })
})

