/**
 *
 * Functies voor het forum
 *
 **/
// Toevoegen smilie
function addEmoticon(strSmile) {
	// Toevoegen
	$('textarea').insertAtCaret(strSmile)
}

// Vervangt smilie code door plaatjes
function replaceEmoticons(strText) {
	strText = strText.replace(/:cry:/gi, " <img alt='' src='/images/smilies/cry.gif'> ");
	strText = strText.replace(/:devil:/gi, " <img alt='' src='/images/smilies/devil.gif'> ");
	strText = strText.replace(/:@/gi, " <img alt='' src='/images/smilies/frown.gif'> ");
	strText = strText.replace(/\|:\(/gi, " <img alt='' src='/images/smilies/frusty.gif'> ");
	strText = strText.replace(/:P/gi, " <img alt='' src='/images/smilies/puh2.gif'> ");
	strText = strText.replace(/:kots:/gi, " <img alt='' src='/images/smilies/pukey.gif'> ");
	strText = strText.replace(/:O/gi, " <img alt='' src='/images/smilies/redface.gif'> ");
	strText = strText.replace(/\*D/gi, " <img alt='' src='/images/smilies/shiny.gif'> ");
	strText = strText.replace(/:Z/gi, " <img alt='' src='/images/smilies/sleephappy.gif'> ");
	strText = strText.replace(/:\)/gi, " <img alt='' src='/images/smilies/smile.gif'> ");
	strText = strText.replace(/;\)/gi, " <img alt='' src='/images/smilies/wink.gif'> ");
	strText = strText.replace(/;-\)/gi, " <img alt='' src='/images/smilies/wink.gif'> ");
	strText = strText.replace(/:$/gi, " <img alt='' src='/images/smilies/biggrin.gif'> ");
	strText = strText.replace(/:\+/gi, " <img alt='' src='/images/smilies/clown.gif'> ");
	strText = strText.replace(/:\?/gi, " <img alt='' src='/images/smilies/confused.gif'> ");
	strText = strText.replace(/8-\)/gi, " <img alt='' src='/images/smilies/coool.gif'> ");
	strText = strText.replace(/\(A\)/gi, " <img alt='' src='/images/smilies/smilie_innocent.gif'> ");
	strText = strText.replace(/\(L\)/gi, " <img alt='' src='/images/smilies/smilie_heart_bounce.gif'> ");
	strText = strText.replace(/:D/gi, " <img alt='' src='/images/smilies/shiny.gif'> ");
	return strText;
}

// Bijwerken smilies in reacties algemeen
function checkEmoticons() {
	$('.ForumMsg').each(function(i) {
		// Linkjes
		$(this).autoLink()
		// Smilies
		$(this).html(replaceEmoticons($(this).html()))
	});
}
