$(function() {
	
	$.fn.csere = function() {
		var content;
		content = $(this).html().replace(/\:sziv\:/g, '<img src="http://static.ogc.hu/images/smiley/heart.png" alt="" />');
		content = content.replace(/\:oO\:/g, '<img src="http://static.ogc.hu/images/smiley/minishock.png" alt="" />');
		content = content.replace(/\:vigyor\:/g, '<img src="http://static.ogc.hu/images/smiley/biggrin.png" alt="" />');
		content = content.replace(/\:pirul\:/g, '<img src="http://static.ogc.hu/images/smiley/blushing.png" alt="" />');
		content = content.replace(/\:bocs\:/g, '<img src="http://static.ogc.hu/images/smiley/bored.png" alt="" />');
		content = content.replace(/\:uncsi\:/g, '<img src="http://static.ogc.hu/images/smiley/mellow.png" alt="" />');
		content = content.replace(/\:nyelves\:/g, '<img src="http://static.ogc.hu/images/smiley/tongue.png" alt="" />');
		content = content.replace(/\:omg\:/g, '<img src="http://static.ogc.hu/images/smiley/ohmy.png" alt="" />');
		content = content.replace(/\:wtf\:/g, '<img src="http://static.ogc.hu/images/smiley/blink.png" alt="" />');
		content = content.replace(/\:mosoly\:/g, '<img src="http://static.ogc.hu/images/smiley/smile.png" alt="" />')	;
		content = content.replace(/\:szomoru\:/g, '<img src="http://static.ogc.hu/images/smiley/sad.png" alt="" />');
		content = content.replace(/\:siros\:/g, '<img src="http://static.ogc.hu/images/smiley/crying.png" alt="" />');
		content = content.replace(/\:kacsint\:/g, '<img src="http://static.ogc.hu/images/smiley/wink.png" alt="" />');
		content = content.replace(/\:xd\:/g, '<img src="http://static.ogc.hu/images/smiley/xd.png" alt="" />');
		content = content.replace(/\:xD\:/g, '<img src="http://static.ogc.hu/images/smiley/xd.png" alt="" />');
			
		$(this).html(content);
	}
		
	$('div.hszszoveg div:not(div.valasz), ul.uzenetek li p, div.magamrol p, div.klanhirek div.nagyhir p, div.nagyhir p, div.hirblokk p, div.jatekfavs ul li:not(:has(input)), div.kedvencek ul.kedvencek li:not(:has(input))').each(function() { $(this).csere(); });
	
});