$(document).ready(function() {
// ------------------------------------------------------------------------------------ TOOLTIP
$(".tooltip").hover(function(e){	
	this.t = this.title;
	this.title = "";	
	//var xOffset = -22;
	//var yOffset = 12;		
	$("body").append("<p id='tooltip'>"+ this.t +"</p>");
	$("#tooltip").css("top",(e.pageY + 2) + "px").css("left",(e.pageX + 12) + "px").fadeIn("fast");	
},
function(){
	this.title = this.t;		
	$("#tooltip").remove();
});	
$(".tooltip").mousemove(function(e){
	$("#tooltip").css("top",(e.pageY + 2) + "px").css("left",(e.pageX + 12) + "px");
});
//
//
$(".tooltip-lewy").hover(function(e){	
	this.t = this.title;
	this.title = "";	
	//var xOffsetLewy = -22;
	//var yOffsetLewy = -168;		
	$("body").append("<p id='tooltip-lewy'>"+ this.t +"</p>");
	$("#tooltip-lewy").css("top",(e.pageY +22) + "px").css("left",(e.pageX - 168) + "px").fadeIn("fast");	
},
function(){
	this.title = this.t;		
	$("#tooltip-lewy").remove();
});
$(".tooltip-lewy").mousemove(function(e){
	$("#tooltip-lewy").css("top",(e.pageY +22) + "px").css("left",(e.pageX - 168) + "px");
});
});

