/**
Vertigo Tip by www.vertigo-project.com
Requires jQuery
*/
this.vtip = function(){
	this.xOffset=-10;
	this.yOffset=10;
	jQuery(".tipTrigger").unbind().hover(
		function(a){
			this.top=(a.pageY+yOffset);
			this.left=(a.pageX+xOffset);
			jQuery("body").append('<div id="tipContent"><img id="vtipArrow" />'+jQuery("#"+this.id+"Tip").html()+"</div>");
			jQuery("div#tipContent #vtipArrow").attr("src","images/vtip_arrow.png");
			jQuery("div#tipContent").css("top",this.top+"px").css("left",this.left+"px").fadeIn("slow")
		},
		function(){
			jQuery("div#tipContent").fadeOut("slow").remove()
		}
	).mousemove(
		function(a){
			this.top=(a.pageY+yOffset);
			this.left=(a.pageX+xOffset);
			jQuery("div#tipContent").css("top",this.top+"px").css("left",this.left+"px")
		})
};
jQuery(document).ready(function(a){vtip()});
