// JavaScript Document

$(document).ready(function(){
	
	// submit guestlist form ---
	$("#bttnsubmit").click(
		function(){
			$.post("process.php", $("#guestlist-form").serialize(), function(data){
				if (data == "success"){
					// if the form was submitted without any problems 
				} else {
					// if there was an error submitting the forms
				}
			});
		}
	);
	
	// reset form ----
	$("#resetbttn").click(
		function(){
			alert("BOOO!");
		}
	);
	
});
