function tinymceInit(path, selector) {
  $(selector).tinymce({
    // Location of TinyMCE script
    script_url : path + '/tiny_mce/tiny_mce.js',

    // General options
    language : 'cs',
    theme : "advanced",
    plugins : "safari,emotions,inlinepopups",
    document_base_url : path,
    relative_urls : false,

    // Theme options
    theme_advanced_buttons1 : "bold,italic,underline,|,link,unlink,image,forecolor,emotions",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left"
  });
}