$(document).ready(function(){
	$('.popOpen_Lafourchette').click(function(){ 
		$('.pop_Lafourchette').remove();									
        $('body').append('<div class="pop_Lafourchette" style="display:none;"></div>');
		$('#overlay').fadeIn(700,function(){
									  
			$('.pop_Lafourchette').load('/module-lafourchette/step1.php'); 
			$('.pop_Lafourchette').fadeIn();
			
		});
		return false;
	});
	$('.closepopin_Lafourchette').click(function(){
		$('.pop_Lafourchette').fadeOut(500,function(){  $('.pop_Lafourchette').remove(); $('#overlay').fadeOut(500); });								
        return false;
	});
	
 });
