				$(document).ready(function(){
					$("#subscribe-form").ajaxForm(
					  {target:"#hiddenDIV",      
					  	beforeSubmit:function()  
						  {
						     $("#msg").html("Sending...");
						  },
					   success:function(rtn)
					   {
					    if(rtn=="success")
					   {
					      $("#subscribe-form").resetForm();
					      $("#msg").html("Thanks for subscribing. <cite>Oregon Humanities</cite> publishes three times a year; your subscription will begin with the next issue.");
					     }else{
					      $("#msg").html(  $("#hiddenDIV #content ul").html() );
					      $("#hiddenDIV").empty();
					     }
					   }
					  }
				)})
