/*======================================================================*\
|| #################################################################### ||
|| # JAKCMS PRO 2.2.6                                                 # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright 2011 JAKCMS All Rights Reserved.                       # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- JAKCMS IS NOT FREE SOFTWARE ----------------    # ||
|| # http://www.jakcms.com | http://www.jakcms.com/license-agreement  # ||
|| #################################################################### ||
\*======================================================================*/

$(function() {
                $('textarea.jakEditor').tinymce({
                        // Location of TinyMCE script
                        script_url : jakCMS.jakcms_url+'js/editor/tiny_mce.js',

                        // General options
                        theme : "advanced",
                        mode:"textareas",
                        language:jakCMS.jakcms_lang,
                        skin:"jakcms",
                        plugins : "autosave,autolink,emotions",

                        // Theme options
                        theme_advanced_buttons1 : "bold,italic,forecolor,|,bullist,numlist,|,link,unlink,|,image,emotions,|,undo,redo,removeformat",
                        theme_advanced_buttons2 : "",
                        theme_advanced_buttons3 : "",
                        theme_advanced_toolbar_location : "top",
                        theme_advanced_toolbar_align : "left",
                        theme_advanced_resizing : true,
						emotions_images_url:jakCMS.jakcms_url,
						entity_encoding:"raw",
						add_unload_trigger:false,
						remove_linebreaks:false,
						inline_styles:true,
						document_base_url : jakCMS.jakcms_url,
						convert_urls : false
						
                });
        });
