$(document).ready(function(){
   $('.cl_toggle').click(function(){
       $(this).next('.cl_hidden').toggle();
   });
});

