$(document).ready(function() { 

	$('#payment').hide();
 
	$('#voucherinformation').submit(function () { 
	
		if ($('#yourname').val().length <= 0) {
			alert('Please enter your name');
			return false;	
		}
		if ($('#youremail').val().length <= 0) {
			alert('Please enter your email');
			return false;	
		}
		if ($('#yourphone').val().length <= 0) {
			alert('Please enter your phone');
			return false;	
		}
		if ($('#youraddress').val().length <= 0) {
			alert('Please enter your address');
			return false;	
		}
	
	  
		$('#details').hide();
		$('#payment').fadeIn();
		var str = $(this).serialize();
		$.ajax({
			type: "POST",
			url: "/wp-content/themes/wise/process.php",
			data: str
		});
		return false;
	});
});
