function initTinyMCE(textarea) {
	// Tiny MCE loader
	tinyMCE.init({
		// General options
		mode : "exact",
		elements : textarea,
		theme : "advanced",
		language: "ru",
		skin : "o2k7",
		skin_variant : "silver",
    	convert_newlines_to_brs : true,
		relative_urls : false,
		force_br_newlines : true,
		force_p_newlines : false,
		plugins : "style,table,advimage,advlink,preview,contextmenu,paste,visualchars,nonbreaking,template,inlinepopups",
	
		// Theme options
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,undo,redo,|,image,link,unlink,|,forecolor,backcolor,|,code,preview",
		theme_advanced_buttons2 : "justifyleft,justifycenter,justifyright,justifyful,|,outdent,indent,|,cut,copy,paste,pastetext,pasteword,cleanup,|,bullist,numlist|,hr,charmap,attribs",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true,
		
	
		// Example content CSS (should be your site CSS)
		content_css : "/tpl/tinymce/tiny_mce.css"
	});	
}
