( function ($) {
  Drupal.behaviors.ajax_callback = {
    attach: function (context, settings) {
      
      $('body').bind("click", function(){
        $('.hot-spot-overlay').hide();
        return true;
      });
      
      $('#slideshow-block .hot-spot .hotspot-link').each(function() {
        $(this).bind("click", function(e) {
          $('.hot-spot-overlay').hide();
          target = $(e.target);
          //target.siblings('.hot-spot-overlay').show();
          return $(this);
        });
      });
      
      $('.close-link a').bind('click', function(){
        $('.hot-spot-overlay').hide();
        return false;
      });
    }
  };
}(jQuery));;

