
	$(document).ready(function()
	{
		$( 'textarea.tinymce' ).tinymce ( {
				// Location of TinyMCE script
				theme								: 'advanced',
				skin 								: 'o2k7',
				skin_variant						: 'silver',
				plugins								: 'bbcode, spellchecker, insertdatetime, paste, searchreplace, visualchars',				
				theme_advanced_buttons1				: 'spellchecker, selectall, cut, copy, paste, pastetext, separator, undo, redo, bold, italic, link, unlink, bullist, numlist, outdent, indent, search, replace',
				theme_advanced_buttons2				: '',
				theme_advanced_buttons3				: 'pastetext,pasteword,selectall',		
				theme_advanced_toolbar_location 	: 'top',
				theme_advanced_toolbar_align		: 'left',
				theme_advanced_resize_horizontal	: false,
				theme_advanced_resizing				: true,
				theme_advanced_path_location		: 'bottom',
				auto_reset_designmode				: true,
				convert_urls						: false,
				relative_urls						: false,
				content_css							: '/c/cms_starter.css',
				plugin_insertdate_dateFormat		: '%d/%m/%Y',
				remove_linebreaks : false,
				convert_newlines_to_brs : true,
				force_br_newlines : true,				
				entity_encoding : "raw",				
				
				/* Paste plug-in seetings to allow paste as plain text or from a Word document 	*/ 
				paste_create_paragraphs				: true,
				paste_create_linebreaks				: false,
				paste_use_dialog					: true,
				paste_auto_cleanup_on_paste			: true,
				paste_convert_middot_lists			: false,
				paste_unindented_list_class			: 'unindentedList',
				paste_convert_headers_to_strong		: true
		});
});

