	// O2k7 skin
	tinyMCE.init({
		// General options
		mode : "textareas",
		editor_deselector : "mceNoEditor",
		elements : "description",
		theme : "advanced",
		skin : "o2k7",
		plugins : "save,advimage,advlink,contextmenu,paste",

		// Theme options
//		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,fontselect",
		theme_advanced_buttons1 : "bold,italic,|,link,unlink",
//		theme_advanced_buttons2 : "pasteword,|,link,unlink,anchor,image,cleanup,code,|,fontsizeselect",
    theme_advanced_buttons2 : "",
		theme_advanced_buttons3 : "",
		//theme_advanced_buttons4 : ",visualchars,nonbreaking,template,pagebreak",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : false,
    
    valid_elements : ""
+"a[href|target|title],"
+"strong/b,"
+"br,"
+"font[color|face|size],"
+"img[src|id|width|height|align|hspace|vspace],"
+"i,"
+"li,"
+"p[align|class],"
+"h1,"
+"h2,"
+"h3,"
+"h4,"
+"h5,"
+"h6,"
+"span[class],"
+"u",

    
		// Example content CSS (should be your site CSS)
		//content_css : "/styles/reklamniclanky.css",
		
		// Enable translation mode
		translate_mode : true,
		language : "cs",

    //neprevadet znaky na entity
    entity_encoding : "raw",
    onchange_callback: function (editor)
    {
        tinyMCE.triggerSave();
        $("#" + editor.id).valid();
    }
	});
