

 $(document).ready(function() {
   $('#fig1').find('#figure1').hide().end().find('#figure1').click(function() {
     $(this).next().slideToggle();
   });
 });
 
 

 $(document).ready(function() {
   $('#quotes2').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
   });
 });
