$.fn.cvTip = function( opts ) {
	var opts = $.extend({xOffset:5,yOffset:10}, opts );
	return this.each(function(){
		$(this).hover(function(e){
			$alt	= this.alt; this.alt	= "";
			$("body").append("<div id='tooltip'>"+ $alt +"</div>");
			$("#tooltip").css("top",(e.pageY - opts.xOffset) + "px")
						.css("left",(e.pageX + opts.yOffset) + "px")
						.fadeIn("fast");		
		},function(){
			this.alt = $alt; $("#tooltip").remove();
		});
		$(this).mousemove(function(e){
			$("#tooltip").css("top",(e.pageY - opts.xOffset) + "px").css("left",(e.pageX + opts.yOffset) + "px");
		});
	});
}