function vtip() 
{
	this.xOffset = -10; // x distance from mouse
	this.yOffset = 10; // y distance from mouse       

	jQuery(".vtip").unbind().hover(    
		function(e) {
			this.t = this.title;
			this.title = ''; 
			this.top = (e.pageY + yOffset); this.left = (e.pageX + xOffset);

			jQuery('body').append( '<p id="vtip">' + this.t + '</p>' );

			jQuery('p#vtip').css("top", this.top+"px").css("left", this.left+"px").fadeIn(200);
		},
		function() {
			this.title = this.t;
			jQuery("p#vtip").fadeOut(300).remove();
		}
	).mousemove(
		function(e) {
			this.top = (e.pageY + yOffset);
			this.left = (e.pageX + xOffset);

			jQuery("p#vtip").css("top", this.top+"px").css("left", this.left+"px");
		}
	); 
}
