$(document).ready(function() {

$('.toolTip').hover(
 function() {
  if($.browser.msie){
     var varleft= 128
  }else{
     var varleft= 120
  }
		this.tip = this.title;
		$(this).append(
			'<div class="toolTipWrapper">'
				+'<div class="toolTipTop"></div>'
				+'<div class="toolTipMid">'
					+this.tip
				+'</div>'
				+'<div class="toolTipBtm"></div>'
			+'</div>'
		);
		this.title = "";
		this.width = $(this).width();
		$(this).find('.toolTipWrapper').css({left:this.width-varleft})
		$('.toolTipWrapper').fadeIn(300);
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$('.toolTipWrapper').children().remove();
			this.title = this.tip;
		}
	);
});
