$(document).ready(function() {
	$('.help').hover(
		function() {
		//this.tip = this.title;
		
		var htmlTooltip = $.ajax({
		    url: '/tooltip.html',
		    type: 'GET',
		    dataType: 'html',
		    timeout: 1000,
		    async: false,
		    error: function(){
		        alert('Erreur au chargement...');
		    }
		}).responseText;
		
		$('.help').append(
			'<div class="toolTipWrapper"><div class="toolTipTop"></div><div class="toolTipMid">'+ htmlTooltip+'</div><div class="toolTipBtm"></div></div>'
		);
				
		//this.title = "";
		this.width = $(this).width();
		$(this).find('.toolTipWrapper').css({left:this.width-229})
		
		$('.toolTipWrapper').fadeIn(300); 
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$(this).children().remove();
			this.title = this.tip;
		}
	);
});