/*
*By helper.ucoz.ru 
*я взял, на меня не кричите))
*Авторские права сохранил
*/
function replaceBBcodes(tar){
	tar = typeof tar != 'undefined' ? tar : 'body';
	$('div', tar).each(function(){
		if( $(this).is('.bbCodeBlock') ){
			var code = $('div.codeMessage:first', this).html()
						.replace(/<br>/ig,'\n')
						.replace(/<!--uzc-->/ig,'')
						.replace(/<!--\/uzc-->/ig,'')
						.replace(/^ +| +$/img,''), match;
			while( match = code.match( /<(\w+).*?>(.*?)<\/\1>/i ) )
				code = code.replace( match[0], match[2] )
			$(this).replaceWith('<pre class="brush: htmljs">'+code+'</pre>');
		}
		if( $(this).is('div.bbQuoteName') )
			this.innerHTML = this.innerHTML.replace(/Quote/i,'Цитирую')
	});
}

if(document.body) replaceBBcodes();