$(document).ready(function() {
$('.toolTip').hover(
function() {
this.tip = this.title;
$(this).append(
'
'
);
this.title = "";
this.width = $(this).width();
$(this).find('.toolTipWrapper').css({left:this.width-120})
$('.toolTipWrapper').fadeIn(10);
},
function() {
$('.toolTipWrapper').remove();
this.title = this.tip;
}
);
});