$(document).ready(function() {
	var openstr  = '» もっと見る';
	var closestr = '» 閉じる';
	
	$("#more").hover(function(){
		$(this).css("cursor","pointer"); 
		
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".box_hide").css("display","none");
	$("#more").click(function(){
		$(this).next().slideToggle("fast");
			if( $("#more").html() == openstr ){ $("#more").html( closestr ).fadeIn(); }
			else{ $("#more").html( openstr ).fadeIn(); }
		});
});