$(document).ready(function(){
	checkAVP();
	avpFormSubmit();
});


function checkAVP() {
	if ($("#avp-form-link").length > 0) {
		$("#avp-form-link").fancybox({'modal' : true});
		$("#content").hide();	
		$("#avp-form-link").trigger('click');	
	}
}

function avpFormSubmit() {
	$("#avp-form").submit(function () {	
		$.post($("#avp-form").attr("action"), $(this).serialize(), function(data) {
			if(data > 0) {
				$("#avp-form h1").hide();			
				$("#content").show();	
				$.fancybox.close();
				$("#avp-form").hide();					
			} else {
				window.location = "http://www.drinkaware.co.uk";
			}
		});
		return false;
	});
}

