$(document).ready(function() {
  	
  	$('#continue').click(
		function(e) {
			e.preventDefault();
			
			$('#continue').attr({ disabled: 'disabled' });
		    $('#status').html("<span class='grey'>Working...Please wait.</span>");
		    
		    var data = $('form').serialize();
			
			$.post('contact-do.php',data,
				function(response) {
				var array = response.split("|");
				if(array[0] == "1") {
				window.location = array[1];
				} else {
				$('#status').html("<span class='red'>"+array[1]+"</span>");
				$('#continue').attr({ disabled: '' });
				}
				
				});
		
	});
	

});
