
function saveSubscriberNote(record, value) {
	$.ajax({
		type: "POST",
		url: "/subscriber/jquery-note-save.php",
		data: "record="+record+"&value="+value,
		complete: function(req, status) {
			if (status == "success" && value)
				alert("Your school notes were saved!");
		}
	});
}

function addEventHandlers() {
	$("#SubscriberNote").change(function(e){
		saveSubscriberNote($(this).attr("name"), $(this).val());
      return true;
   });

	$("#ViewHideTimestamps").click(function(e){
		$(".ViewHideTimestamps").toggle();
		return false;
	});

	$('table.zebrastripe tbody tr:not([th]):odd').addClass('odd'); 

	$('table.zebrastripe tbody tr:not([th]):even').addClass('even'); 
}

$(document).ready(addEventHandlers);
