$(document).ready(function() {
  $('.honor_subhead').hide();			   
  $('.toolTip').hover(
    function() {
    this.tip = $(this).parent().next().html();
    $(this).append(
     '<div class="toolTipWrapper">'
        +'<div class="toolTipTop"></div>'
        +'<div class="toolTipMid">'
          +'Benefits of this gift level'
        +'</div>'
		+'<div class="toolTipBtm">'
          +this.tip
        +'</div>'
      +'</div>'
    );
    this.width = $(this).width();
    $('.toolTipWrapper').css({top: $(this).height()+3});
    $('.toolTipWrapper').fadeIn(500);
  },
    function() {
      $('.toolTipWrapper').fadeOut(200, function callback() {
		$(this).remove()});
	  }
  );
});