var tinymceUser = 1;
var tinymceDefault = {
	// Location of TinyMCE script
	script_url : 'system/tinymce/jscripts/tiny_mce/tiny_mce.js',
	
	// General options
	tab_focus : ':prev,:next',
	theme : "advanced",
	skin : "o2k7",
	plugins : "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras",
	
	// Theme options
	theme_advanced_buttons1 : "undo,redo,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontsizeselect,forecolor",
	theme_advanced_buttons2 : "removeformat,|,bullist,numlist,|,link,unlink,|,insertdate,inserttime,|,emotions,image,|,hr",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_align : "left",
	theme_advanced_toolbar_location : "top",
	theme_advanced_statusbar_location : "bottom",
	theme_advanced_resizing : false,
	// lang
	language : "de",

	forced_root_block: false,
	force_br_newlines : true,
	force_p_newlines : false,
	
	entity_encoding : "raw",
	
}

jQuery.data(document, 'tinymce' , tinymceDefault);

$(function() {
	$('textarea.tinymce').tinymce(tinymceDefault);
});
