// comments_spam_block
jQuery(function($){
    if ($('button#noSpam').length) {
    	$('button#noSpam').click(function(){
    		var comment_body = $('textarea#comment-text').val();
    		comment_body = comment_body.replace(/(<a href=")([^"]*)(">)([^<]*)(<\/a>)/g, "[a href='$2']$4[/a]");
    		comment_body = comment_body.replace(/&/g, "&amp;");
    		comment_body = comment_body.replace(/</g, "&lt;");
    		comment_body = comment_body.replace(/>/g, "&gt;");
    		comment_body = comment_body.replace(/"/g, "&quot;");
    		$('textarea#comment-text').val(comment_body);
    		$('p.spam').remove();
    		$('div#comments-open-footer').append('<p><input type="submit" name="post" id="comment-submit" value="投稿" accesskey="9" tabindex="99" /></p>');
    		$('div#comments-open-spam-block').html('<p style="font-weight: bold;">ありがとうございます。<br />「投稿」をクリックするとコメントが送信されます。</p>');
    	});
    	$('button#spam').click(function(){
    		$('p.spam').remove();
    		$('div#comments-open-footer').append('<p class="spam">スパムは遠慮させていただきます f(^_^;</p>');
    	});
    }
});
// comments_spam_block

