﻿$().ready(function () {
    $('textarea.tinymce').tinymce({
        // Location of TinyMCE script
        script_url: '/jijdroomt/js/tiny_mce/tiny_mce.js',

        // General options
        theme: "advanced",
        plugins: "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist",

        // Theme options
        theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,cut,copy,paste,formatselect",
        theme_advanced_buttons2: "",
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
		width : "100%",

        oninit: function () { myInit() },

        setup: function (ed) {
            ed.onSaveContent.add(function (ed, o) {
                o.content = o.content.replace(/&#39/g, "&apos");
            });
        }
        //theme_advanced_statusbar_location: "hidden",
        //theme_advanced_resizing: true,

        // Example content CSS (should be your site CSS)
        //content_css: "/css/style.css",
    });

});
