this.tooltip = function() {
	this.xOffset = -10;
	this.yOffset = 10;

//	jQuery("[title]").unbind().hover(
			jQuery("[title]").unbind().hover(
		function(e) {
			this.t = this.title;
			this.title = '';
			/*
			this.t2 = '';
			if ( typeof(this.href) === 'string' )
			{
				// Nur den Domainnamen
				this.t2 = '<br><a href="' + this.href + '">' 
					+ this.href.split(/\/+/g)[1] + '</a>';
			}*/
			this.top = (e.pageY + yOffset); 
			this.left = (e.pageX + xOffset);
			jQuery('body').append( 
				'<div id="tooltip">' + this.t + '</div>' 
			);
			jQuery('#tooltip').css("top", this.top+"px").css("left", this.left+"px").fadeIn('fast');
		},
		function() {
			this.title = this.t;
			jQuery("#tooltip").fadeOut('fast').remove();
		}
	).mousemove(
		function(e) {
			this.top = (e.pageY + yOffset);
			this.left = (e.pageX + xOffset);
			jQuery("#tooltip").css("top", this.top+"px").css("left", this.left+"px");
		}
	);
};
jQuery(document).ready(function(jQuery){tooltip();});
