this.bulle_diag = function(){	
	$xOffset = 125;
	$yOffset = -130;		
	
	$(".bandeaubottom .icone_bottom").mouseover(function(e){											  
		$(this).next('#description')
		.css("top",(e.pageY - $xOffset) + "px")
		.css("left",(e.pageX + $yOffset) + "px")
		.show();
	 });
	$(".bandeaubottom .icone_bottom").mouseout(function(){											  
		$(this).next('#description').hide();
	 });
	$(".bandeaubottom .icone_bottom").mousemove(function(e){
		$(this).next('#description')
		.css("top",(e.pageY - $xOffset) + "px")
		.css("left",(e.pageX + $yOffset) + "px");
	});			
};
