/*
jQuery(document).ready(function(){
  // Hide all details popups.
  jQuery('div.details').hide();
  
  // Functionality to toggle popups for details.
  jQuery('#details-1-link').click( function(){
     jQuery('#details-1').toggle( 'slow' );
   });
  
  jQuery('#details-2-link').click( function(){
     jQuery('#details-2').toggle( 'slow' );
   });
  
});
*/