$(document).ready(function() {
	$('.toolTip').hover(
		function() {
		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();
		var sir = (this.width/2)-90
		$(this).find('.toolTipWrapper').css({left:60})
		$('.toolTipWrapper').fadeIn(200);
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$(this).children("div").remove();
			this.title = this.tip;
		}
	);
	$('.tTip').hover(
		function() {
		this.tip = this.title;
		$(this).append(
			'<div class="tTipWrapper">'
				+'<div class="tTipTop"></div>'
				+'<div class="tTipMid">'
					+this.tip
				+'</div>'
				+'<div class="tTipBtm"></div>'
			+'</div>'
		);
		this.title = "";
		this.width = $(this).width();
		var sir = (this.width/2)-90
		$(this).find('.tTipWrapper').css({left:sir})
		$('.tTipWrapper').fadeIn(200);
	},
	function() {
		$('.tTipWrapper').fadeOut(100);
		$(this).children("div").remove();
			this.title = this.tip;
		}
	);
});
