/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* larsTips based on a jquery piece by jon cazier */
/* v 1.0                                          */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

$(document).ready(function() {
  $('.toolTip').hover(
    function() {
    this.tip = this.title;
    $("body").append(
      '<div class="toolTipWrapper">'
        +'<div class="toolTipTop"></div>'
        +'<div class="toolTipMid">'
          +this.tip
        +'</div>'
        +'<div class="toolTipBtm"></div>'
      +'</div>'
    );
    this.title = "";
    var myOff = $(this).offset();
    $('.toolTipWrapper').css({left:myOff.left-230});
    $('.toolTipWrapper').css({top:myOff.top+20});
    $('.toolTipWrapper').fadeIn(300);
    $('#jsspacer').show();
  },
  function() {
    $('.toolTipWrapper').fadeOut(500,function() {
      $(this).remove();
    });
    this.title = this.tip;
    }
  );
});
