function init_tinymce() {
	tinyMCE.init({

		mode:"textareas",
		editor_selector:'mceEditor',
		theme:"advanced",
		language:"bg",
		plugins: "ibrowser,safari,style,contextmenu,paste,fullscreen,nonbreaking,xhtmlxtras,table",

		theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,bullist,numlist,|,outdent,indent,blockquote,|,link,unlink,anchor,|,image,ibrowser,|,cleanup,removeformat,code,|,pasteword,|,fullscreen,print,",
		theme_advanced_buttons2: "formatselect,|,tablecontrols,|,charmap",
		theme_advanced_buttons3: "",
		theme_advanced_buttons4: "",
		theme_advanced_toolbar_location: "top",
		theme_advanced_toolbar_align: "left",
		theme_advanced_statusbar_location:" bottom",
		theme_advanced_resizing: true,
		
		content_css : "/admin/images/tinymce.css",
		
		relative_urls: false,
		elements: 'absurls'
	});
};