/*
DESTOON Copyright (C)2008-2099 www.destoon.com
This is NOT a freeware,Use is subject to license.txt
*/
function show_comment() {
if($('#comment_main').html().toLowerCase().indexOf('
')!=-1) $('#comment_main').html('');
}
$(function(){
var cmh2 = $(window).height();
var cmh1 = $('#comment_count').offset().top;
if(cmh1 < cmh2) {
show_comment();
} else {
$(window).bind("scroll.comment", function() {
if($(document).scrollTop() + cmh2 >= cmh1) {
show_comment();
$(window).unbind("scroll.comment");
}
});
}
$('#comment_div').mouseover(function() {
show_comment();
});
});