var tiny_mce_fonts = 'Andale Mono=andale mono,times;'+
	'Arial=arial,helvetica,sans-serif;'+
	'Arial Black=arial black,avant garde;'+
	'Book Antiqua=book antiqua,palatino;'+
	'Comic Sans MS=comic sans ms,sans-serif;'+
	'Courier New=courier new,courier;'+
	'Georgia=georgia,palatino;'+
	'Helvetica=helvetica;'+
	'Impact=impact,chicago;'+
	'Symbol=symbol;'+
	'Tahoma=tahoma,arial,helvetica,sans-serif;'+
	'Terminal=terminal,monaco;'+
	'Times New Roman=times new roman,times;'+
	'Trebuchet MS=trebuchet ms,geneva;'+
	'Verdana=verdana,geneva;'+
	'Webdings=webdings;'+
	'Wingdings=wingdings,zapf dingbats';

switch(language) {
	case 'ko-KR':
		tiny_mce_fonts = '굴림=Gulim,sans-serif;'+
			'돋움=Dotum,sans-serif;'+
			'궁서=Gungsuh,serif;'+
			'바탕=Batang,serif;'+
			'맑은고딕=Malgun Gothic,sans-serif;'+
			'Symbol=symbol;'+
			'Tahoma=tahoma,arial,helvetica,sans-serif;'+
			'Webdings=webdings;'+
			'Wingdings=wingdings,zapf dingbats';
			break;
	case 'ja-JP':
		tiny_mce_fonts = 'MSゴシック=MS Gothic,sans-serif;'+
			'MS明朝=MS Mincho,serif;'+
			'MS Pゴシック=MS PGothic,sans-serif;'+
			'MS P明朝=MS PMincho,serif;'+
			'Symbol=symbol;'+
			'Tahoma=tahoma,arial,helvetica,sans-serif;'+
			'Symbol=symbol;'+
			'Tahoma=tahoma,arial,helvetica,sans-serif;'+
			'Webdings=webdings;'+
			'Wingdings=wingdings,zapf dingbats';
			break;
}

$(window).load(function() {
	if(!(/mobile/i.test(navigator.userAgent))) {
		$('textarea.XenoWebEditor').each(function() {
			$(this).tinymce({
				'script_url':'/skin/default/script/tiny_mce/tiny_mce.js',
				'language': language.replace(/-.*$/, ''),
				'theme_advanced_fonts': tiny_mce_fonts,
				'mode': 'specific_textareas',
				'editor_selector': 'WebEditor',
				'theme': 'advanced',
				'skin': 'o2k7',
				'skin_variant': 'silver',
				'plugins': 'inlinepopups,safari,autoresize,table,paste,preview,emotions,contextmenu,layer,insertdatetime,searchreplace,media,noneditable',
				'dialog_type': 'modal',
				'theme_advanced_buttons1': 'bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,fontselect,fontsizeselect,|,forecolor,backcolor,|,preview',
				'theme_advanced_buttons2': 'cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime',
				'theme_advanced_buttons3': 'tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,media,|,insertlayer,moveforward,movebackward,absolute',
				'theme_advanced_toolbar_location': 'top',
				'theme_advanced_toolbar_align': 'left',
				'theme_advanced_statusbar_location': 'bottom',
				'theme_advanced_resizing': true,
				'paste_auto_cleanup_on_paste': true,
				'forced_root_block': false,
				'width':$(this).width(),
				'height':$(this).height()
			});
		});
		$('textarea.XenoWebEditorSmall').each(function() {
			$(this).tinymce({
				'script_url':'/skin/default/script/tiny_mce/tiny_mce.js',
				'language': language.replace(/-.*$/, ''),
				'theme_advanced_fonts': tiny_mce_fonts,
				'mode': 'specific_textareas',
				'editor_selector': 'WebEditor',
				'theme': 'advanced',
				'skin': 'o2k7',
				'skin_variant': 'silver',
				'plugins': 'inlinepopups,safari,autoresize,table,paste,preview,emotions,contextmenu,layer,insertdatetime,searchreplace,media,noneditable',
				'dialog_type': 'modal',
				'theme_advanced_buttons1': 'bold,italic,underline,strikethrough,|,fontselect,fontsizeselect,|,forecolor,backcolor,|,preview',
				'theme_advanced_buttons2': 'cut,copy,paste,pastetext,pasteword,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code',
				'theme_advanced_buttons3': '',
				'theme_advanced_toolbar_location': 'top',
				'theme_advanced_toolbar_align': 'left',
				'theme_advanced_statusbar_location': 'bottom',
				'theme_advanced_resizing': true,
				'paste_auto_cleanup_on_paste': true,
				'forced_root_block': false,
				'width':$(this).width(),
				'height':$(this).height()
			});
		});
	} else {
		$('form:has(textarea)').append('<input type="hidden" name="nohtmleditor" value="1" />');
	}
});

