$(function() {

$('.tooltip').tooltip({
	track: true,
	delay: 0,
	showURL: false,
	extraClass: "right"
});

$(document).ready(function() {
	$('.tooltip_info').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();
		$(this).find('.toolTipWrapper').css({left:this.width-113})
		$('.toolTipWrapper').fadeIn(100);
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$(this).children().remove();
			this.title = this.tip;
		}
	);
});

});
