this.chirpTip = function(){
	/* CONFIG */		
		xOffset = 50;
		yOffset = 20;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */		
	$("img.chirp").hover(function(e){
		this.title = "";									  
		$("body").append("<p id='chirp'><img src='images/chirp.png' /></p>");
		$("#chirp")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");		
    },
	function(){
		this.title = this.t;		
		$("#chirp").remove();
    });	
	$("img.chirp").mousemove(function(e){
		$("#chirp")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

$(document).ready(function() { 
	chirpTip();
});