function alter(container){
	if(document.getElementById(container).style.height=="120px") document.getElementById(container).style.height="auto";
	else document.getElementById(container).style.height="120px";
}

function postprocess(){
	//send the next contact date & type of follow up
	thedate = new Date();
	month=thedate.getMonth()+1;
	day=thedate.getDate();
	year=thedate.getFullYear();
	todaysdate=month+"/"+day+"/"+year;
	document.getElementById("00N30000003aX5u").value=todaysdate;
}

$(document).ready(function(){
	$("#contactForm").submit(function(){
		
		// construct params
		var params = "ajax=true";
		for(var i=0;i<$("#contactForm input").length;i++){
			params += "&"+$("#contactForm input")[i].id+"="+$("#contactForm input")[i].value;
		}
		
		// submit form
		$.ajax({
			  type: "POST",
			  url: "http://ctbartendingschool.com/wp-content/themes/btacademy/mailer.php",
			  data: params,
			  success: function(msg){
			  	
				}
			});
		return true;
	});
});