
var smiley = new Array(
/:\)/g,
/\:D/g,
/\(roll\)/g,
/\{\}/g,
/8\)/g,
/\:\(/g,
/\;\)/g,
/\|\-\)/g,
/0\:\-\)/g,
/\]\:\-\)/g,
/\(inlove\)/g,
/\(blush\)/g,
/\:o/g,
/\(lol\)/g,
/\(love\)/g,
/\:P/g,
/\(thumbs\)/g,
/\(blink\)/g,
/\(rock\)/g,
/\(hmmm\)/g,
/\(tease\)/g,
/\(mad\)/g,
/\(cry\)/g
);

var smiley_text = new Array(
':)',
':D',
'(roll)',
'{}',
'8)',
':(',
';)',
'|-)',
'0:-)',
']:-)',
'(inlove)',
'(blush)',
':o',
'(lol)',
'(love)',
':P',
'(thumbs)',
'(blink)',
'(rock)',
'(hmmm)',
'(tease)',
'(mad)',
'(cry)'
);

var emot = new Array(
'<img src="http://static.sme6no.net/sme6no/images/emoti/smile.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/laugh.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/rolleyes.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/kiss.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/cool.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/sad.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/wink.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/sleep.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/innocent.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/devil.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/inlove.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/blush.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/wootm.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/lolo.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_love.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_tongue.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_thumbsup.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_blink.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_punk.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_hmmm.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_tease.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_evilmad.gif" />',
'<img src="http://static.sme6no.net/sme6no/images/emoti/icon_cry2.gif" />'
);

function emotiSweep()
{
	var i=0;
	var rep;
	while(rep = $('#emotArea_'+i))
	{
		if(!rep.html()) break;
		
		for(var z=0;z<smiley.length;z++)
		{
			rep.html(rep.html().replace(smiley[z],emot[z]));
		}
		i++;
	}
}

function emotiStr(str)
{
	for(var z=0;z<smiley.length;z++)
	{
		str = str.replace(smiley[z],emot[z]);
	}
	
	return str;
}

function emotiBar(obj)
{
	document.write('<div style="padding:3px;width:270px;height:55px;background:url(http://static.sme6no.net/sme6no/images/bage_bg.gif) repeat-x #f6f6f6;border:1px solid #f2f2f2;">');
	for(var i=0;i<emot.length;i++)
	{
		if(i==18) continue;
		document.write('<a href="#" onclick="addEmot('+i+',\''+obj+'\');return false;">'+emot[i]+'</a>');
	}
	document.write('</div>');
}

function addEmot(i,obj)
{
	document.getElementById(obj).value+=' '+smiley_text[i]+' ';
}