/* $Id: wysiwyg.js 789 2010-05-22 14:57:30Z tigra $ */
$().ready(function() {
    $('textarea.tinymce').tinymce({
        // General options
        theme : "advanced",
        verify_html : true,
        language : "ru",
        relative_urls : "false",
        remove_script_host : false,
        convert_urls : false,
        plugins : "safari,advlink,contextmenu,paste,directionality,fullscreen,inlinepopups,xhtmlxtras",

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

        // Theme options
        theme_advanced_blockformats : "h4,h5,h6",
        theme_advanced_buttons1 : "bold,italic,strikethrough,formatselect,removeformat,|,pastetext,pasteword,|,bullist,numlist,outdent,indent,|,blockquote,|,anchor,link,unlink,|,mycut,|,fullscreen,|,code",
        theme_advanced_buttons2 : "",
        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/>');
                }
            });
        }
    });
});
$().ready(function() {
    $('textarea.tinymceForum').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,strikethrough,link,unlink,emotions,blockquote",
        theme_advanced_buttons2 : "",
        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/>');
                }
            });
        }
    });
});