/* $Id: wysiwyg.js 323 2009-12-05 15:08:24Z tigra $ */
$().ready(function() {
    $('textarea.tinymce').tinymce({
        // General options
        theme : "advanced",
        verify_html : true,
        language : "ru",
        plugins : "safari,advlink,contextmenu,paste,directionality,fullscreen,inlinepopups,xhtmlxtras",
        
        content_css : "/striped/css/wysiwyg.css",

        // Theme options
        theme_advanced_blockformats : "h3,h4,h5",
        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/>');
                }
            });
        }
    });
});
