// When the page is ready
   $(document).ready(function(){
     $(".credits").hide();
     $(".mother-splash div")
       .prepend("<p class='readbody'><a href='' title='Get Photography Information'>+</a></p>");
     
     $(".photo-info p.readbody a").click(function(event){
       $(this).parents("div").next(".credits").slideToggle("slow");
       
       // Stop the link click from doing its normal thing
       return false;
     });
   });