$j().ready(function() {    
    $j('textarea#wysiwyg').tinymce({
        // Location of TinyMCE script
        script_url : base_url+'gadgets/tiny_mce/tiny_mce.js',

        // General options
        convert_urls:false,        
        mode : "textareas",
        theme : "advanced",
        theme_advanced_buttons1 : "mybutton,bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,separator,forecolor,backcolor,separator,link,unlink,cleanup,code",
        theme_advanced_buttons2 : "",
        theme_advanced_buttons3 : "",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,
        plugins : 'inlinepopups'
    });
    $j('textarea.txteditor').tinymce({
        // Location of TinyMCE script
        script_url : base_url+'gadgets/tiny_mce/tiny_mce.js',

        // General options
        convert_urls:false,
        mode : "textareas",
        theme : "advanced",
       theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,
        plugins : 'inlinepopups'
    });
});
