$(function()
        {
                $('li').click(function(event)
                {
                        if ($(this).hasClass("menuclosed"))
                        {
                                $(this).removeClass("menuclosed");
                                $(this).addClass("menuopen");
                                $(this).children('ul').hide();
                        }
                        else
                        {
                                $(this).removeClass("menuopen");
                                $(this).addClass("menuclosed");
                                $(this).children('ul').show();
                        }
                        event.stopPropagation( );

	})
});