$(document).ready(function(){
          $('textarea.tinymce').tinymce({
    // Location of TinyMCE script
    script_url : '/js/tiny_mce/tiny_mce.js',
  
    convert_urls : false,
    document_base_url : "/",
 
    plugins : "table,contextmenu,inlinepopups",
 
    theme : "advanced",
    theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,undo,redo,link,unlink,separator,code",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true,
    extended_valid_elements : "object[width|height],param[name|value],embed[src|type|wmode|width|height],a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],font[face|size|color|style]"
  });
});
