$('#captcha').hide();

$('.contactlink').click(function()
{
	if (Modernizr.cssanimations)
	{
		$('#contactformulier').show().toggleClass('fadeInLeft').toggleClass('fadeOutRight');
	}
	else
	{
		$('#contactformulier').fadeToggle();
	}
});

$('#contactformulier').submit(function()
{
	if (Modernizr.cssanimations)
	{
		$(this).addClass('fadeOutRightBig');
	}
	else
	{
		$(this).fadeOut();
	}
	
	$('#captcha').val('2');
	
	$.post($(this).attr('action'), $(this).serialize(), function()
	{
		$('.tagline').fadeOut(function() {
			$(this).html("Hartelijk dank voor uw bericht, we nemen zo spoedig mogelijk contact op!").fadeIn();
		});
	});
	
	return false;
});
