// Initializes all textareas with the tinymce class
$().ready(function() {
   $('textarea.tinymce').tinymce({
      script_url : '/scripts/tiny_mce/tiny_mce.js',
      theme : "advanced",
	  theme_advanced_buttons1 : "bold,italic,underline,bullist,numlist",
	  theme_advanced_buttons2 : "",
	  theme_advanced_buttons3 : "",
	  theme_advanced_buttons4: "",
	  theme_advanced_toolbar_location : "top"
   });
});
