	this.tooltip = function(){	
				 xOffset = 5;
				 yOffset = 5;			
			$("a").hover(function(e){											  
				this.t = this.title;
				this.title = "";									  
				$("body").append("<p id='tooltip'><i id='tooltip-'>"+ this.t +"</i></p>");
				$("#tooltip")
					.wait()
					.css("top",(e.pageY - yOffset) + "px")
					.css("left",(e.pageX + xOffset) + "px")
					.fadeIn(100)				
			},
			function(){
				this.title = this.t;		
				$("#tooltip").remove();
			});
			    $.fn.wait = function(time, type) {
				time = time || 500;
				type = type || "fx";
				return this.queue(type, function() {
					var self = this;
					setTimeout(function() {
						$(self).dequeue();
					}, time);
				});
			};
			$("a").mousemove(function(e){
				$("#tooltip")
					.css("top",(e.pageY - yOffset) + "px")
					.css("left",(e.pageX + xOffset) + "px");
			});			
		};
		$(document).ready(function(){
			tooltip();
		});    
