$(document).ready(function() {
    // h1内のaタグを削除
    $.each($('h1'), function() {
        $(this).html($(this).text());
    });

    // google-code-prettifyを使用するためpreタグのclassに.prettyprintを追加
    // 角丸処理も行なう
    $('pre').addClass('prettyprint');
    prettyPrint();
    $('pre').corner('8px');
    $('blockquote').corner('8px');

    // 外部リンクを別窓に変更
    $('a[href^="http"]').attr({'target': 'brank'});


    // 編集ページ
    if (/\baction=edit\b/i.test(location.search)) {
        // RSSを更新しない
        $('input[name="recent_edit"]').attr('checked', 'checked')

        // 編集者は常に自分
        $('input#username').val('tekiomo')
            .attr('readonly', 'readonly');

        // プレビューしてからでないと更新できないように
        if (!$('div.preview').size()) {
            $('input[name="Save"]').attr('disabled', 'disabled');
        }
    }
});

