////////////////////////////////////
// Funeral Homes JS				////
// Store All JS Here Please		////
// Author: Matt Erney			////
// Date: Apr 17, 2009			////
////////////////////////////////////	
$(document).ready(function() {
	// when sort is selected and subsequently changes...
	$("#sortobits").change(function() {		 
		var type=$(this).val();	
		var page=$('#page').val();
  		$.post("/admin/resort.php", { type: type, page: page },
		function(data){
			$("#obitcontent").hide();
			$("#obitcontent").html(data);
			$("#obitcontent").fadeIn("slow");
		});
	});
	
	// User clicks to sign up for obituary mailings
	$("#signup-obits").click(function() {		 
		var email=$('#signup-email').val();
  		$.post("/admin/process-form.php", { from: 'obit-signup', email: email },
		function(data){
			$("#obit-signup-container").hide();
			$("#obit-signup-container").html(data);
			$("#obit-signup-container").fadeIn("slow");
		});
	});
});