$(document).ready(function(){
    //comment floor
    $('ol.commentlist li').each(function(i){
        var comment_floor = i + 1;
        $(this).find('.comment-meta a').text('#' + comment_floor);
    });
    
    //language
    $('#respond #reply-title').text('请留下您的评论');
    $('#respond p.comment-notes').text('您的电子邮箱不会被公布，请放心:-)');
    $('#respond p.comment-form-author label').text('姓名');
    $('#respond p.comment-form-email label').text('邮箱');
    $('#respond p.comment-form-url label').text('主页');
    $('#respond p.comment-form-comment label').text('评论');
    $('#respond input#submit').attr('value','发表评论');
    
    //正文中的more，在ie下不占用行高
    $('.post .entry-content p span[id^=more-]').parent('p').addClass('more-anchor-point');
    
    //k-pic
    $('p.k-pic img').each(function(){
        $(this).wrap('<div class="img-outer"></div>');
        $(this).parent('.img-outer').append('<div class="shadow"></div>').after('<div class="clear"></div>');
    });
    
    //respond
    if($.browser.msie)
    {
        $('#respond').prepend('<sup class="l"></sup><sup class="r"></sup><sub class="l"></sub><sub class="r"></sub>');
    }
})
