/* Initialization of MCE editor with most available options  */
/* This is intended to be used for admin side functions      */

tinyMCE.init({
        // General options
        mode                              : "textareas",
        theme                             : "advanced",
        editor_selector                   : "mce-editor",

        // Theme options
        theme_advanced_buttons1 : "bold,italic,underline",
        theme_advanced_buttons2: "",
        theme_advanced_buttons3: "",
        theme_advanced_buttons4: "",
        theme_advanced_toolbar_location   : "top",
        theme_advanced_toolbar_align      : "left"
        //theme_advanced_resizing           : true
});
