jQuery(document).ready(function(){
	setInterval("commentsFade()", 4000);
});

function commentsFade(){
    jQuery("div.content-right div.comment div.comment-content div.comment_on").fadeOut(2000, function() {
		if (jQuery(this).next("div.comment_off").length) {
	   		jQuery(this).next("div.comment_off").fadeIn(2000, function() {
	   			jQuery(this).removeClass("comment_off").addClass("comment_on");
   			});
		}
		else {
	   		jQuery("div.content-right div.comment div.comment-content div.comment_off").first().fadeIn(2000, function() {
	   			jQuery("div.content-right div.comment div.comment-content div.comment_off").first().removeClass("comment_off").addClass("comment_on");
   			});
		}
    	jQuery(this).removeClass("comment_on").addClass("comment_off");
    });
};

