$(document).ready(function() {
	$(".btn_contents").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$(".click_display").css("display","none");

	$(".btn_contents").click(function(){
		$(this).next().animate({height: "toggle", opacity: "toggle"},"1500");
	});
	
});
