jQuery(document).ready(function() {
	jQuery(".totop").click(function() {
		jQuery("html, body").animate({ scrollTop:0 });
		return false;
	 });	
	jQuery('.open').click (function() {
		jQuery('.lightbox').fadeIn();
		jQuery('#overlay').fadeIn();
		jQuery("html, body").animate({ scrollTop:0 });
	});
	jQuery('.close, #overlay').click (function() {
		jQuery('.lightbox').fadeOut();
		jQuery('#overlay').fadeOut();
		jQuery('#formulierpagina').delay(1000).attr("src","about:blank");
	});
});
