$(document).ready(function(){
			$('#signup_pop').hide();
			$('#thankyou_content').hide();
});
function showForm(){
			$('#signup_pop').fadeIn(500);
}
function closeForm(){
			$('#signup_pop').fadeOut(500);
			$('#signup_content').fadeIn(750);
			$('#signup_footer').fadeIn(750);
			$('#thankyou_content').hide();
			resetFields();
}
function submitForm(){
			$('#signup_content').hide();
			$('#signup_footer').hide();
			$('#thankyou_content').fadeIn(500);
			resetFields();
}
function resetFields(){
			document.forms[0].reset();
}
