/* Style Tooltips */

$(function(){
	$("*[title]").hover(function(elem) {
		var xOffset = 10;
		var yOffset = 10;
		this.temp = this.title;
		this.title = "";
		$("body").append("<div id='title' style='display:none;'><span>"+ this.temp +"</span></div>");
		$("#title").css("top", (elem.pageY - xOffset) + "px").css("left",(elem.pageX + yOffset) + "px").animate({opacity:.9}, 600).fadeIn('slow');
		$("#title span").css({"display":"block", "maxWidth":"250px"});
		$(this).mousemove(function(elem){
		$("#title")
			.css("top",(elem.pageY - xOffset) + "px")
			.css("left",(elem.pageX + yOffset) + "px");
	});	
	}, function() {
		this.title = this.temp;
		$("#title").fadeOut().remove();
	});
});	
