$(document).ready(function(){
	var animate_speed = 800;
	$('#id_contact_button').toggle(function(){
		$('#header').animate({ bottom:'75%' }, animate_speed);
		$('#footer').animate({ bottom:'430px' }, animate_speed);	
		$('#contact').animate({ bottom:0 }, animate_speed);
	},function(){
		$('#header').animate({ bottom:'55%' }, animate_speed);
		$('#footer').animate({ bottom:0 }, animate_speed);	
		$('#contact').animate({ bottom:'-430px' }, animate_speed);
	});
	
	
	$("#form_submit").click(function() {  $("#contact_form").trigger('submit'); });
	$("#contact_form").validate({ onkeyup:false, submitHandler:contact_submit });
	$('#security_code').attr('value', '');
	function contact_done() { }
	function contact_submit()
	{
		$.ajax({
			type: "POST",
			url: "sendmail.php",
			data: $("#contact_form").serialize(),
			success: function(data){
				if (data == "SUCCESS")
					$('#contact_form').fadeOut('slow', function() { $('#contact_sent').slideDown('slow', function(){ setTimeout (contact_done,5000); }); });
				else if (data == "BADCODE")
					alert("The security code you typed was wrong. Please try again.");
				else
					alert("Message not sent, please try again. Error data: "+data);
			}
		});
	}
});

