/*======================================================================*\
|| #################################################################### ||
|| # JAKCMS PRO 2.0.8                                                 # ||
|| # ---------------------------------------------------------------- # ||
|| # 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/disclaimer/        # ||
|| #################################################################### ||
\*======================================================================*/

$(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:"jak",
                        plugins : "autosave,emotions,preview",

                        // Theme options
                        theme_advanced_buttons1 : "bold,italic,justifyleft,justifycenter,bullist,numlist,undo,redo,link,unlink,image,emotions,forecolor,blockquote,media,removeformat",
                        theme_advanced_buttons2 : "",
                        theme_advanced_buttons3 : "",
                        theme_advanced_buttons4 : "",
                        extended_valid_elements:"a[href|title|rel],"+"b[],"+"blockquote[],"+"br[clear],"+"center[align|height|width],"+"em[],"+"font[color],"+"img[align|alt|border|height|src|width],"+"li[],"+"ol[],"+"p[align|style],"+"small[],"+"strong[],"+"u[],"+"ul[]",
                        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:false,
						convert_fonts_to_spans:false,
						document_base_url : jakCMS.jakcms_url,
						convert_urls : false
						
                });
        });
