function dispShowLink(){
	document.write("<a class='open-more inner-link' href='javascript:void(0);'>詳細をみる</a>");
	document.write("<a class='close-more inner-link' href='javascript:void(0);'>閉じる</a>");
}

jQuery(function(){
	jQuery(".open-more").click(function(){
		jQuery(this).next().next().slideDown("slow");
		jQuery(this).next().show();
		jQuery(this).hide();
	});
	jQuery(".close-more").click(function(){
		jQuery(this).next().slideUp("slow");
		jQuery(this).prev().show();
		jQuery(this).hide();
	});
	jQuery(document).ready(function(){
		//詳細を非表示にしておく
		jQuery(".more-block").hide();
	});
});
