this.tooltip = function(){	
	/* CONFIG */		
		xOffset = 70;
		yOffset = -60;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */	
		
	$("area.fancybox").hover(function(e){		
										  
		this.t = this.title;
		//this.nb = this.depNb;
		//this.title = "";									  
		$("body").append("<p id='tooltip'>"+ this.t +"</p>");
		$("#tooltip").css("top",(e.pageY - xOffset) + "px").css("left",(e.pageX + yOffset) + "px").fadeIn("fast");		
	
    },
	function(){
		this.title = this.t;		
		$("#tooltip").remove();
    });	
	$("area.fancybox").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});	
	
/*	$("a.jqModal, area.jqModal").click(function(e){
		
		
			$("body").append("<div id='bingMap' class='bMap' ><div id='myMaps'></div></div>");
			$("#franceMap").css("visibility","hidden");
			
					
			document.getElementById("txtQuery").value = this.t;
		
			document.getElementById('depNb').value = $(this).attr('depNb');
			OnPageLoad();
				
		
            //loadDepartement(1);
			
			
	});*/
			
};



