

jQuery(document).ready(function($) {

    

    $("#buckets li a").hover(
      function() {
    $(this).children("img").animate({ opacity: 0}, 100).siblings("div").fadeIn("fast");
      },
      function() {
      $(this).children("img").animate({ opacity: 1 }, 100).siblings("div").fadeOut("fast");
      }
    );

});

