$(document).ready(function() {   
       // hides the slickbox as soon as the DOM is ready   
       // (a little sooner than page load)
	   $('#r2004').hide(); 
       // toggles the slickbox on clicking the noted link    
        $('h2#r2004-toggle').click(function() {  
          $('#r2004').toggle(400);  
          return false;  
        });   
		
        $('#r2005').hide();     
        $('h2#r2005-toggle').click(function() {  
          $('#r2005').toggle(400);  
          return false;  
        });
		
        $('#r2006').hide();    
        $('h2#r2006-toggle').click(function() {  
          $('#r2006').toggle(400);  
          return false;  
        });
		
		 $('#r2007').hide();   
        $('h2#r2007-toggle').click(function() {  
          $('#r2007').toggle(400);  
          return false;  
        });
		
		 $('#r2008').hide();     
        $('h2#r2008-toggle').click(function() {  
          $('#r2008').toggle(400);  
          return false;  
        });
		
		$('#r2009').hide();    
        $('h2#r2009-toggle').click(function() {  
          $('#r2009').toggle(400);  
          return false;  
        });
		
		$('#r2010').hide();   
        $('h2#r2010-toggle').click(function() {  
          $('#r2010').toggle(400);  
          return false;  
        });
		
		$('#r2011').hide();   
        $('h2#r2011-toggle').click(function() {  
          $('#r2011').toggle(400);  
          return false;  
        });
      });
