// JavaScript Document
// nur die Basis-Editorfunktionen

tinyMCE.init({
	mode : "textareas",
	editor_selector : "editor_gaestebuch", // damit wird nur jedes Textfeld, dass class="editor_standard" zum Standard-Editor
	language : 'de', //deutsche Sprache
	theme : "advanced", 
        skin : "o2k7",
	skin_variant : "silver",
	plugins : "emotions",

        theme_advanced_toolbar_location : "bottom",
		theme_advanced_toolbar_align : "center",
		theme_advanced_buttons1 : "emotions,bold,italic,underline,strikethrough,|,undo,redo,|,bullist,numlist,|",
		theme_advanced_buttons2 : "",
                theme_advanced_buttons3 : "",

                theme_advanced_disable : "formatselect, styleselect, justifyleft, justifycenter, justifyright, justifyfull, sup, sub,code, image,indent, outdent, charmap, hr, help, anchor, removeformat, visualaid, separator ",
                theme_advanced_resizing : true,
         theme_advanced_statusbar_location : "none"
      
	

});
