function replaceBBcodes(){
	$('div.bbCodeBlock').each(function(){
		var code = $(this).find('div.codeMessage').html();
			code = code.replace(/<br>/ig,'\n');
			code = code.replace(/<!--uzc-->/ig,'');
			code = code.replace(/<!--\/uzc-->/ig,'');
		
	});
	$('div.bbQuoteName').each(function(){ $(this).html( $(this).html().replace(/Quote/i,'Цитирую') ) });
         $('div.bbCodeName').each(function(){ $(this).html( $(this).html().replace(/Code/i,'Кусок кода') ) });

}
replaceBBcodes();