jQuery(document).ready(function($) {
	$( '.commentlist li' ).each(function (i) {
		i = i + 1;
		$( this ).prepend( '<div class="commentnumber">' + i + '</div>' );
	});
});