$(document).ready(function(event){
    $('#reports blockquote span').click(
        function(event){
            if($(this).hasClass('current_report')){
                $(this).removeClass('current_report'); 
                $('#reports blockquote dl[submission='+$(this).attr('entry')+']').slideUp();               
            } else {
                $('#reports blockquote span.current_report').removeClass('current_report');
                $('#reports blockquote dl:visible').slideUp();
            
                $(this).addClass('current_report');
                $('#reports blockquote dl[submission='+$(this).attr('entry')+'] ul:last').css('padding',0);
                $('#reports blockquote dl[submission='+$(this).attr('entry')+']').slideDown();
            }
        }
    );
});
