
function addTooltip(id, extraclass){
  $(id).tooltip({
    left:-15,
    top:0,
    delay: 0,
    showURL: false,
    fade: 250,
    extraClass: extraclass,
    bodyHandler: function() {
      var title = "<h4>" + $(this).find("h3").text() + "</h4>";
      var body = $(this).find(".sqtBody").html();
      return title + body;
    }
  });
}

$(document).ready(function(){
  addTooltip("#sqtS", "");
  addTooltip("#sqtQ", "");
  addTooltip("#sqtT", "");
});
