(function($) {
  $(function() {
    $('a.tooltip').livequery(function() {
      $(this).tooltip({
    	  delay: 250,
    	  showURL: false,
    	  track: true,
    	  bodyHandler: function() {
    		  return $(this).find('span').html();
    	  }
      });
    });
  });
})(jQuery);