$(document).ready(function() {
    var ck = $.cookies.get('twtusername');
    if(ck){
        $("#comments-reply").css('display','block')
    } else {
        $("#notice").css('display','inline');
    }
    $('.commentcount').each(function(){
      $(this).load($(this).attr('title'));
    })
});
