tyb
btw you can use this to see posts in bottom left in case bread is too fast
/ Display a replies counter overlay in the bottom right corner /
$(function(){
$('head').append('<style>#thread_stats_posts_ovl { '+
'position:fixed;bottom:15px;right:35px;'+
'font:38px sans-serif;opacity:0.5;color:#f60;}</style>');
$('body').append('<div id="thread_stats_posts_ovl"/>');
function copyStats() { $('#thread_stats_posts_ovl').
text($('#thread_stats_posts').text());}
$(document).on('new_post',copyStats); copyStats();});