$(document).ready(function() {
	//contactformulier verwerken
	$(".send_form").click(function() {
		var current_form = $(this).closest("form");
		
		current_form.slideUp();
		$.post("ajax.php?url=http://www.uniekewebshops.nl/php/ajax/contact.php", current_form.serialize(), function(data){
			
			if (data == "OK") current_form.html("Email succesvol verzonden. Wij zullen uw bericht zo spoedig mogelijk beantwoorden.");
			else {
				$("#form_errors").remove();
				current_form.prepend(data);
				}
			
			current_form.slideDown();
			});
		});
		
	//nieuwsbriefformulier verwerken
	$("#nieuwsbriefForm").click(function() {
		var current_form = $(this).closest("form");
		
		current_form.slideUp();
		$.post("ajax.php?url=http://www.uniekewebshops.nl/php/ajax/newsletter.php", current_form.serialize(), function(data){
			
			if (data == "OK") current_form.html("Uw e-mail adres is opgeslagen en er is een e-mail naar u verzonden om uw aanmelding te bevestigen.");
			else {
				$("#form_errors").remove();
				current_form.append(data);
				}
			
			current_form.slideDown();
			});
		});
		
		
	//free shop form
	$("#aanbiederAdd a").click(function(){
		$("#aanbiederAdd iframe").slideToggle();
		});
	});