function wysiwyg() {	tinyMCE.init({	// General options	mode : "textareas",	theme : "advanced",	plugins : "safari,pagebreak,style,table,advhr,advimage,advlink,iespell,inlinepopups,insertdatetime,preview,contextmenu,paste,directionality,fullscreen,noneditable,nonbreaking,xhtmlxtras",		// Theme options // tablecontrols // forecolor // backcolor	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|paste,pastetext,pasteword",	theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,link,unlink,image,cleanup,code",	theme_advanced_buttons3 : "hr,removeformat,visualaid,|,sub,sup,|,charmap,pagebreak,|,fullscreen,preview",	theme_advanced_buttons4 : "",	theme_advanced_toolbar_location : "top",	theme_advanced_toolbar_align : "left",	theme_advanced_statusbar_location : "bottom",	theme_advanced_resizing : true,	convert_urls : false,	// Example content CSS (should be your site CSS)	content_css : "/wysiwyg/content.css",	// Drop lists for link/image/media/template dialogs	template_external_list_url : "/wysiwyg/lists/template_list.js",	external_link_list_url : "/wysiwyg/lists/link_list.js",	external_image_list_url : "/wysiwyg/lists/image_list.js",	media_external_list_url : "/wysiwyg/lists/media_list.js"});};
