$(document).ready(function(){ 

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

}); 
