(function ($) {
  $(document).ready(function() {
    $(document).bind('click', function (e) {
      var $target = $(e.target);
      var href = $target.attr('href');
      if (href != undefined) {
        if ($target.hasClass('overlay-disabled')) {
          $(window).unbind('hashchange.drupal-overlay');
          $(document).unbind('click.drupal-overlay mouseup.drupal-overlay');
          window.location = $target.attr('href');
          return false;
        }
      }
      
    });
  });  
})(jQuery);
;

