$(document).ready(function() {
	$('#popup_registration form').submit(function(e) {
		e.preventDefault();
		
		var $form = $(this).closest('form');
		var data = $form.serialize();
		
		$.post($form.attr('action'), data, function(data) {
			$('#popup_registration .content h2').html(data);
			$form.hide();
			$('#popup_registration_proceed').show();
			
			$('input[name=form_pcode]').val($('#postal_code1').val() + $('#postal_code2').val());
		});
	});
	
	$('.popup .close').click(function(e) {
		e.preventDefault();
		
		$('#popup_overlay2').hide();
		$('#popup_overlay').hide();
		$(this).closest('.popup').hide();
	});
	
	$('a[href=#testimonial]').click(function(e) {
		e.preventDefault();
		
		$('#popup_overlay2').show();
		$('#popup_testimonial').show();
	});
	
	$('#popup_registration input[name=postal_code1]').keyup(function(e) {
		var value = $(this).val();

		if(value.length == 3) {
			$('#popup_registration input[name=postal_code2]').focus();
		}
	});

	window.onload = function() {
		setTimeout(function() {
			$('#popup_overlay').show();
			$('#popup_registration').show();
		}, 1500);
	};
});
