$(document).ready(function(){
	$(".k_01").hover(function(){
		var offset = $(this).offset();
		$(this).children(".floatA").css({ "top": offset.top+30, "left": offset.left}).fadeIn(500);
		
	},function(){
		$(this).children(".floatA").hide();
	});
	$(".close").click(function(){
		$(".floatA").hide();
	});
	
})

