jQuery(document).ready(function($) {
	/* ------------------------------------------------- */
	/* HIJACK FORM
	/* ------------------------------------------------- */
	$('#newsletter-btn').click(function(e) {
		e.preventDefault();
		$.post('nieuwsbrief', {email:$('#email').val()}, function(data){ $('#feedback').fadeOut().text(data).fadeIn(); });
	});
	/* ------------------------------------------------- */
	/* COLORBOX
	/* ------------------------------------------------- */
	$('a.colorbox').colorbox({transition:"elastic", current:"foto {current} van de {total}", previous:"vorige", next:"volgende"});
});

