
<!--


this.tooltip = function(){	
	/* CONFIG */		
		xOffset = 10;
		yOffset = 20;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */		
	$("a.tooltip").hover(function(e){
	    ThisId      = this.id
	    RealtorName = $('#' + this.id + 'name').val();
	    RealtorImg = $('#' + this.id + 'img').val();
		this.t = this.title;
		this.title = "";									  
		$("body").append('<p id="tooltip" class="txt01"><img src="' + RealtorImg + '" height="155" width="120" onerror="agentImgFail()" style="margin:5px;"><br>' + RealtorName + '</p>');
		$("#tooltip")
		    .css({
		    	"position" : "absolute",
	            "border" : "1px solid gray",
	            "background" : "white",
	            "font-size" : "11px",
	            "text-align" : "center",
	            "padding" : "2px 5px",
	            "color" : "#959595",
	            "display":"none"
		    })
			.css("top",(e.pageY - xOffset) + "px")
			//.css("left",(yOffset) + 300 + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");		
    },
	function(){
		this.title = this.t;		
		$("#tooltip").remove();
    });	
    //uncomment to have tooltip follow mouse
	$("a.tooltip").mousemove(function(e){
		//$("#tooltip")
		//.css("top",(e.pageY - xOffset) + "px")
		//.css("left",(e.pageX + yOffset) + "px");
	});			
};



// starting the script on page load
$(document).ready(function(){
	tooltip();
});
