
$(function(){
    $('li.link.opend').children('a.title').click(function(){
        if($(this).parent().is(".closed"))
            $(this).parent().removeClass('closed').addClass('opend').children('div').show();
        else
            $(this).parent().removeClass('opend').addClass('closed').children('div').hide();
        return false;
    });

    
});