// JavaScript Document

//marquee controlled by jquery
function mailsub() {
	
var name = $("input#name").val();
if(name == "") {
		$("input#name").focus();
		$(".message").html("<p>Please enter all fields</p>");
	return false;
}
	
var email = $("input#email").val();
if(email == "") {
		$("input#email").focus();
		$(".message").html("<p>Please enter all fields</p>");
	return false;
}

//ajax for maillist form 

		//Ajax post
var datastring = "name=" + name + "&email=" + email;
		
		$.ajax({
			   type: "POST",
			   url: "maillist.php",
			   data: datastring,
			   success: function() {
				   			   $(".message").html("<p></p>");
							   $("form#maillist").hide();
							   $(".message").html("<h2>Ticket Request Form Submitted!</h2>").append("<p>We will be in touch soon.</p>");
						}
		}); //end of ajax						   
}						 