/*
 * Script bulle_mail
 * powered by jQuery (http://www.jquery.com)
 * 
 */
 


this.bulle_mail = function(){
	
// Configuration

		xOffset = -8;
		yOffset = -180;

// Configuration fin
		
	$("a.bulle_mail").hover(function(e){											  
		this.t = this.title;
		this.title = "";									  
		$("body").append("<p id='bulle_mail'>"+ this.t +"</p>");
		$("#bulle_mail")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn(1);		
    },
	function(){
		this.title = this.t;		
		$("#bulle_mail").remove();
    });	
	$("a.bulle_mail").mousemove(function(e){
		$("#bulle_mail")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};



// starting the script on page load
$(document).ready(function(){
	bulle_mail();
});