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

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

});
