(function($){
    $.fn.extend({
        menu: function(){
            $(this).find("li>ul").each(function(){
                if ($(this).find(".active").length == 0)
                {
                    $(this).hide();
                }
            });
            
            //$(this).find("li>a").not(".active").hover(function(){$(this).css('background-color','#d9f2d4');}, function(){$(this).css('background-color','#bfe1b8');});
           // $(this).find("li>ul>li>a").not(".active").hover(function(){$(this).css('background-color','#aac1d9');}, function(){$(this).css('background-color','#ebecf5');});

            $(this).find("li>a").click(function(){
                if ($(this).next().is("ul"))
                {
                    $(this).parent().parent().find("li>ul").slideUp(200);
                    $(this).next().slideDown(200);
                    return false;
                }
                else
                {
                    return true;
                }
            });
        }
    });
})(jQuery);

