$(function(){
	//各tooltipクラスの動作設定
	$("a.tooltip").each(function(){
		var content = $(".tooltipCont" , this);

		//mousemoveイベントの動作設定
		$(this).mousemove(function(event){
			$(content).css({
				top : event.pageY  +10,
				left : event.pageX  -400
			});
		});
		
		//hoverイベントの動作設定
		$(this).hover(function(){
			$(content).stop(true , true).fadeIn(300);
		}, function(){
			$(content).css("display" , "none");
		});

	});

});