$(function(){
	$(".box").hover(
		function () {
			$(this).addClass("hover").find('.detailbox').fadeIn(500);
		},
		function () {
			$(this).find('.detailbox').fadeOut(100, function(){
				$(this).parents('.box').removeClass("hover");																								 
			});
		}
	);
});
