$(document).ready(function(){
    if ($('#content #leftmenu ul.ullevel1').length) {
        $('#content #leftmenu ul.ullevel1>li').each(function(){
            if ($(this).children('ul.ullevel2').length) {
                $(this).children('a').addClass('ulexpand');
                $(this).find('ul.ullevel2').slideUp();
                $(this).children('a').click(function(){
                    $(this).siblings('ul.ullevel2').slideToggle(500, function(){
                        $(this).siblings('a').toggleClass('ulexpandopen');
                    });
                    return false;
                });
            }
        });
    }
});
