var j$ = jQuery; 
 
j$(document).ready(function(){
     j$('.acc').click(function() {
         j$(this).next().slideToggle();
     }).next().show();
});

