$(document).ready(function ()
{
	$(".thumbs a").fancyZoom({		directory: "images/fancyzoom/",		closeOnClick: true,
		width: 429,
		height: 600	});
	
	$(".fotothumbs .imglink").fancyZoom({		directory: "images/fancyzoom/",		closeOnClick: true	});
});

function submitform()
{	
	var name = $("#txtName").val();
	var email = $("#txtEmail").val();
	var subject = $("#txtSubject").val();
	var thetext = $("#txtText").val();
	
	if (name == "" || email == "" || subject == "" || thetext == "")
	{
		alert("Vul aub alle velden in!");
	}
	else
	{
		$("#contactform-done").css("display","none");
		
		$("#contactform-input").fadeOut("fast", function ()
		{
			$("#contactform-loading").fadeIn("fast", function ()
			{
				document.body.scrollTop = 3000;
			});
		
			$.post("contactform.php", {
				txtNaam: name,
				txtMail: email,
				txtOnderwerp: subject,
				txtBericht: thetext
			},
			function (xmldocument)
			{
				$("#contactform-loading").fadeOut("fast", function ()
				{
					$("#contactform-done").fadeIn("fast", function ()
					{
						document.body.scrollTop = 3000;
					});
				});
			});
		});
	}
}