﻿

jQuery(function(){

    
    $(".more-content").hide();	
    $(".plus").click(function(){
        $(this).next(".more-content").slideDown();
    });
		
    $(".bt_moin").click(function(){
        $(this).parents(".more-content").slideUp();
    });
});
