function initComments() 
{
 tinyMCE.init({
      mode : "textareas",
      theme : "advanced",
      force_p_newlines : true,
      convert_newlines_to_brs : false,
      remove_linebreaks : false,
      preformatted : true,
      gecko_spellcheck : true,
      entity_encoding : "raw",
      plugins : "emotions,spellchecker,safari,iespell,save,table,xhtmlxtras,advhr,insertdatetime,preview,fullscreen,preelementfix,syntaxhl",
      
    theme_advanced_buttons1 : "save,separator,cut,copy,paste,undo,redo,separator,bold,italic,underline,separator,forecolor,backcolor,"+
                              "separator,justifyleft, justifycenter,justifyright, justifyfull,",
    
    theme_advanced_buttons2:  "bullist,numlist,outdent,indent,separator,link,unlink,separator,emotions,separator,code,syntaxhl",
    
    theme_advanced_buttons3:  "formatselect,fontselect,fontsizeselect",
    
    theme_advanced_buttons4:  "",
    
    extended_valid_elements : "textarea[cols|rows|disabled|name|readonly|class],pre[*]",

	theme_advanced_statusbar_location : "bottom",
	theme_advanced_resizing : true,    
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",	
    editor_selector : "CMTEditor",
    content_css: "/js/tiny_mce/css/custom_tinymce_content.css, /css/nova.css"

	});
}

