function loadEditors()
{
  var editors = document.getElementsByTagName('textarea');
 
  var smpl = {
	mode : "textareas",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,link,unlink,bullist,blockquote,undo,|,code", 
	theme_advanced_buttons2 : "", 
	theme_advanced_buttons3 : "",
	paste_auto_cleanup_on_paste : true,
	paste_convert_headers_to_strong : false,
	paste_strip_class_attributes : "all"
  };
  var validate = {
	mode : "textareas",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,link,unlink,bullist,blockquote,undo,|,code", 
	theme_advanced_buttons2 : "", 
	theme_advanced_buttons3 : "",
	paste_auto_cleanup_on_paste : true,
	paste_convert_headers_to_strong : false,
	paste_strip_class_attributes : "all",
	init_instance_callback : "formValidation"
  };
		 
	for(var i = 0; i < editors.length; i++)
	{
	  var id = editors[i].getAttribute('id');
	  if(document.getElementById(id).className == 'required_area')
		new tinymce.Editor(id, validate).render();
	  else
		new tinymce.Editor(id, smpl).render();
	}
}

function hideContent(){
	$('#show_hide_wrapper').hide('slow', function (){
		$('#show_content_wrapper').show(600);
	});
}

function showContent(){
	$('#show_content_wrapper').hide('slow', function (){
		$('#show_hide_wrapper').show(600);
	});
}