$(document).ready(function() {
	$('.tooltip').hover(
		function() {
		this.tip = this.title;
		$(this).append(
			'<div class="toolTipWrapper">'
				+'<div class="toolTipTop" style="z-index:100;"></div>'
				+'<div class="toolTipMid" style="z-index:100;">'
					+this.tip
				+'</div>'
				+'<div class="toolTipBtm" style="z-index:100;"></div>'
			+'</div>'
		);
		this.title = "";
		this.width = $(this).width();
		$(this).find('.toolTipWrapper').css({left:this.width-45})
		$('.toolTipWrapper').fadeIn(30);
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$('.toolTipWrapper').remove();
		//$(this).remove();
			this.title = this.tip;
		}
	);
});
