/* $Id: wysiwyg.js 323 2009-12-05 15:08:24Z tigra $ */
$().ready(function() {
    $('textarea.tinymceRealway').tinymce({
        // General options
        theme : "advanced",
        verify_html : true,
        relative_urls : "false",
        remove_script_host : false,
        convert_urls : false,
        mode : "textareas",
        language : "ru",
        plugins : "safari,advlink,advimage,contextmenu,paste,directionality,fullscreen,inlinepopups,xhtmlxtras,emotions,media,youtube,table",

        content_css : "/css/wysiwyg.css",

        // Theme options
        theme_advanced_blockformats : "h4,h5,h6",
        theme_advanced_buttons1 : "pastetext,pasteword,|,formatselect,fontselect,fontsizeselect,|,forecolor,backcolor,forecolorpicker,backcolorpicker,removeformat",
        theme_advanced_buttons2 : "bold,italic,underline,del,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,outdent,indent,|,blockquote,|,anchor,link,unlink,image,|,mycut",
        theme_advanced_buttons3 : "emotions,media,youtube,|,tablecontrols,|,fullscreen,|,code",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "none",
        theme_advanced_resizing : false,

        setup : function(ed,url) {
            ed.addButton('mycut', {
                title : 'Кат',
                image : 'striped/images/smallcut-20.png',
                onclick : function() {
                    ed.focus();
                    ed.execCommand('mceInsertRawHTML', false, '<hr/>');
                }
            });
        }
    });
});

$().ready(function() {
    $('textarea.tinymceForumRealway').tinymce({
        // General options
        theme : "advanced",
        verify_html : true,
        language : "ru",
        relative_urls : "false",
        remove_script_host : false,
        convert_urls : false,
        plugins : "safari,advlink,contextmenu,directionality,emotions,inlinepopups,xhtmlxtras",

        content_css : "/striped/css/wysiwyg.css",

        // Theme options
        theme_advanced_buttons1 : "bold,italic,underline,del,|,blockquote,link,unlink",
        theme_advanced_buttons2 : "emotions,forecolor,backcolor,forecolorpicker,backcolorpicker",
        theme_advanced_buttons3 : "",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "none",
        theme_advanced_resizing : false,

        setup : function(ed,url) {
            ed.addButton('mycut', {
                title : 'Кат',
                image : 'striped/images/smallcut-20.png',
                onclick : function() {
                    ed.focus();
                    ed.execCommand('mceInsertRawHTML', false, '<hr/>');
                }
            });
        }
    });
});