$(function(){
	$("map area[imgName]")
	.mouseenter(function(){
		var imgName = $(this).attr("imgName");
		$(this).css("z-index", "1001");
		$(".bubble#i_"+imgName).stop(false, true).fadeIn(200);
	})
	.mouseleave(function(){
		var imgName = $(this).attr("imgName");
		$(".bubble#i_"+imgName).stop(false, true).fadeOut(200);
	});
});
