$(document).ready(function(){
	$('.tooltip a.definition').tooltip({
		track: true,
		delay: 500,
		fade: 100,
		opacity: 1,
		left:-175,
		showURL: false,
		extraClass: "definition",
    bodyHandler: function() { 
        return $(this).next('span').html();
    }, 
    showURL: false
  });
  $('#steeping-instructions.tooltip a').tooltip({
			track: true,
			delay: 500,
			fade: 100,
			opacity: 1,
			left:-125,
			showURL: false,
			extraClass: "instructions",
	    bodyHandler: function() { 
	        return $(this).next('span').html();
	    }, 
	    showURL: false
  });
});
