$(function(){
	$("#point01_moreinfo").css("opacity","0.9").hide();
	$(".point_more_btn01 a").mouseover(function(){
		$("#point01_moreinfo").fadeIn().css({
			"top":$(this).offset().top-230+"px",
			"left":$(this).offset().left-90+"px"
		});
	}).mouseout(function(){
		$("#point01_moreinfo").fadeOut();
	});
	$("#point02_moreinfo").css("opacity","0.9").hide();
	$(".point_more_btn02 a").mouseover(function(){
		$("#point02_moreinfo").fadeIn().css({
			"top":$(this).offset().top-230+"px",
			"left":$(this).offset().left-90+"px"
		});
	}).mouseout(function(){
		$("#point02_moreinfo").fadeOut();
	});
	$("#point03_moreinfo").css("opacity","0.9").hide();
	$(".point_more_btn03 a").mouseover(function(){
		$("#point03_moreinfo").fadeIn().css({
			"top":$(this).offset().top-230+"px",
			"left":$(this).offset().left-90+"px"
		});
	}).mouseout(function(){
		$("#point03_moreinfo").fadeOut();
	});

});
