jQuery.ajaxSetup({ "beforeSend": function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")} });

jQuery(document).ready(function($) {
	$("#leave_message_link").click(function(e) { $(this).hide(); $("#quick_message_area").slideDown(); e.stopPropagation(); return false; });
	$("#quick_message_area a").click(function(e) { $("#quick_message_area").slideUp(); $("#leave_message_link").show();e.stopPropagation();return false; });
	$("#menu a").corner("top");
});



tinyMCE.init({
	mode : "textareas",
	editor_selector : "richtext",
	width : "550",
	height: "100",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,undo,redo,link,unlink",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "bottom",
	extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
	plugins : "safari"
});