	$().ready(function() {
		$('textarea.tinymce').tinymce({
			script_url : 'JS/tinymce/tiny_mce.js',
			theme : "advanced",
			mode : "exact",
		  	theme : "advanced",
		  	invalid_elements : "b,i,iframe,font,input,textarea,select,button,form,fieldset,legend,script,noscript,object,embed,table,img,a,h1,h2,h3,h4,h5,h6",
	
		  	//theme options 
		  	theme_advanced_buttons1 : "cut,copy,paste,pastetext,pasteword,selectall,|,undo,redo,|,cleanup,removeformat,|", 
		  	theme_advanced_buttons2 : "bold,italic,underline,|,bullist,numlist,|,forecolor,backcolor,|", 
		  	theme_advanced_buttons3 : "", 
		  	theme_advanced_buttons4 : "", 
		  	theme_advanced_toolbar_location : "top", 
		  	theme_advanced_toolbar_align : "left", 
		  	theme_advanced_statusbar_location : "none", 
		  	theme_advanced_resizing : false,
	
		  	//plugins
		  	plugins : "inlinepopups,paste",
		  	dialog_type : "modal",
			paste_auto_cleanup_on_paste : true
		});
	});