	$(function() {
		$('#inloggen').click(function(){
			$('#inlogscherm').animate({'left':'20px'},500); 
		});
		$('#inlogclose').click(function(){
			$('#inlogscherm').animate({'left':'-200px'},500,function(){
				$('#overlay').fadeOut('fast');
			});
		});
	});

