/**
 * depends on jquery-1.3.2.js
 * @author Andrea Ertel
 * last modified: 09-07-29
 * version: 0.0.1
 */


$(document).ready(function() {
   $('.report h4').click(function() {
   	 $(this).toggleClass('closed');
     $(this).next().toggleClass('hidden');
   });
});
