$(function(){

//body内のtitle属性をもつ要素への処理
	$("body *[title]").each(function(){

	//対象要素設定
		var Self = $(this),
		ToolchipName = "toolchip",
		Toolchip = "#"+ToolchipName,
		Title = Self.attr("title");

	//ホバーイベント
		Self.hover(
			function(event){
				Self.attr("title","");
				$("body").append("<div id="+ToolchipName+">"+Title+"</div>");
				$(Toolchip).hide().css({
					position:"absolute",
					top:event.pageY+(0),
					left:event.pageX+15
				})
				.not(":animated").fadeIn(500);
			},
			function(){
				Self.attr("title",Title);
				$(Toolchip).remove();
			}
		);

	//マウスムーヴイベント
		Self.mousemove(function(event){
			$(Toolchip).css({
				top:event.pageY+(0),
				left:event.pageX+15
			});
		});

	});

});
