jQuery(document).ready(function() {	 
		jQuery('#overlay').fadeIn(500,function() {

		jQuery('.popup_strooizout').fadeIn(500);
	
	});
    
	jQuery('#overlay, .sluit_popup').click(function()
	{		
     	jQuery('.popup_strooizout').fadeOut(500,function(){
			
        	jQuery('#overlay').fadeOut(500);
			
		});
	});
								   
});
