$(document).ready(function() {	

	$(".news_over_wapper").hide();
		
	$(".thumbnews").hover(
	function() {
		$(this).find('.news_over_wapper').slideDown('fast');
	},
	function() {
		$(this).find('.news_over_wapper').slideUp('fast');
	});

	//-------------------------------
	
	$(".book_h").hover(
	function() {
		$(this).find('.pupup_container').show().animate({top:40},{ queue:false, duration:300,  easing: 'easeOutCubic' });
	},
	function() {
		$(this).find('.pupup_container').animate({top:180},{ queue:false, duration:300,  easing: 'easeInCubic' });
	});
	
	$(".book_v").hover(
	function() {
		$(this).find('.pupup_container').show().animate({top:40},{ queue:false, duration:300,  easing: 'easeOutCubic' });
	},
	function() {
		$(this).find('.pupup_container').animate({top:180},{ queue:false, duration:300,  easing: 'easeInCubic' });
	});

});
