
$(document).ready(function(){
  $(".description").hide();
  $(".report").children("h3").prepend("<img class=\"toggle\" src=\"http://library.ncin.org.uk/img/more.png\" alt=\"[more...]\" />");
  $(".toggle").click(function(){
    $(this).parent().parent().children(".description").slideToggle("normal");
    if($(this).attr("alt") == "[more...]"){
      $(this).attr("src", "http://library.ncin.org.uk/img/less.png");
      $(this).attr("alt", "[less...]");
    } else {
      $(this).attr("src", "http://library.ncin.org.uk/img/more.png");
      $(this).attr("alt", "[more...]");
    };
  });
})