/* 終了したブログ用 */
(function($) {
	$(function() {
             $("ul.closed_blog li.e").hide();
             $("ul.closed_blog li.more a").click(function() {
                   if ($("ul.closed_blog li.e").css('display') == "none") {
                       $(this).text("閉じる");
                   } else {
                       $(this).text("全て表示");
                   }
                   $("ul.closed_blog li.e").slideToggle();
             });
	});
})(jQuery);
