jQuery(document).ready(function() {
	jQuery('.toolTip').hover(
		function() {
		this.tip = this.title;
		jQuery(this).append(
			'<div class="toolTipWrapper">'
				+'<div class="toolTipTop"></div>'
				+'<div class="toolTipMid">'
					+this.tip
				+'</div>'
				+'<div class="toolTipBtm"></div>'
			+'</div>'
		);
		this.title = "";
		this.width = jQuery(this).width();
		jQuery(this).find('.toolTipWrapper').css({left:this.width-0})
		jQuery('.toolTipWrapper').fadeIn(300);
	},
	function() {
		jQuery('.toolTipWrapper').fadeOut(100);
		jQuery(this).children().remove();
			this.title = this.tip;
		}
	);
});
