/* Changes tabs on today_*.ctp, var tab is the id of the tab to show */
function change_tab(tab) {
	$('.today-tab').hide();
	$('#' + tab).show();
	$('#tabbox li').removeClass('tab_active');
	$('#li_' + tab).addClass('tab_active');
}

/* turn textareas into tinymce wysiwig editors */
function init_mce() {
	tinyMCE.init({
		mode : "textareas",
		theme : "simple"
	});
}

$(document).ready(function() {
	$("a.ajax").click(function (e) {
		e.preventDefault();
		$(this).find('img').attr('src', '/img/admin/loading_icon_gray.gif');
		$('.action_tooltip').hide();
		$.ajax({
			url: this.href,
			success: function(data) {
				$('#ajax-response').html(data);
			} 
		});
	});
});