$().ready(function() {

	$('textarea.WYSIWYG').tinymce({
		script_url : '/forum/js/tiny_mce/tiny_mce.js',
		content_css : "/forum/css/skins/OT-New-Skool/OT-New-Skool.css",
		theme : "advanced",
		plugins : "emotions,preview,fullscreen,safari",
		theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,blockquote,undo,redo,link,unlink,charmap,image,fullscreen",
		theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		relative_urls : false,
		convert_urls : false,
		paste_auto_cleanup_on_paste : true,
		paste_convert_headers_to_strong : true,
		paste_remove_spans : true,
		paste_remove_styles : true,
		gecko_spellcheck : true,
		strict_loading_mode : true,
		accessibility_focus : false,
		verify_html : true,
		valid_elements : ""
		+"a[href|target|title],"
		+"blockquote[class],"
		+"br,"
		+"caption,"
		+"code,"
		+"col,"
		+"colgroup,"
		+"dd,"
		+"del,"
		+"dfn,"
		+"dir,"
		+"div,"
		+"dl,"
		+"dt,"
		+"em/i,"
		+"hr,"
		+"img[src|alt|width|height],"
		+"li,"
		+"ol,"
		+"p,"
		+"pre/listing/plaintext/xmp,"
		+"strike,"
		+"strong/b,"
		+"sub,"
		+"sup,"
		+"table,"
		+"tbody,"
		+"td,"
		+"tfoot,"
		+"th,"
		+"thead,"
		+"tr,"
		+"tt,"
		+"ul,"
		+"span[style]"
	});

});