$(document).ready(function(){


$("#bestseller_widget p").hide();


$("#bestseller_widget h3").toggle(
      function () {
      
      $(this).css("background-image","url(http://england.shelter.org.uk/__data/assets/image/0005/58523/hide.gif)");
      
      $(this).next().slideDown("fast");
       
      },
      function () {
      
      $(this).css("background-image","url(http://england.shelter.org.uk/__data/assets/image/0004/58522/disclose.gif)");
      
      $(this).next().slideUp("fast");
     
    });



});
