$(document).ready(function(){

	/*************************
			SMALL NIEUWSBRIEF 
	*************************/

	$("#response").hide();

    var options = { 
        target:        	'#response',   									// div waarin de response komt te staan
		success:		function(){
							$("#contact-form").fadeOut(500, function(){
								$("#response").fadeIn("slow");
							});
						},
		clearForm:		true,
		timeout:   		3000 
    };
	
	$('#contact-formulier').ajaxForm(options); 

});






	



