$(document).ready(function(){
	

	
		$(".forget").fancybox({
			'overlayShow':	true,
			'overlayOpacity':0.7,
			'frameWidth': 470,
			'frameHeight':300,
			'sizefix':true,
			loadedCallback:function(){
				$('#email').placeholder();
				$('#renvoiemail').click(function(){
					$.getJSON('/ajaxdata/checkifuserexist/format/json/mail/'+$('#email').val(), function(json){
						if(json.reponse.userid != false){
							//renvoie mail
							alert(json.reponse.msg);
							
							$.fn.fancybox.close();
							$("#formrenvoiemail").submit();
						}else{
							alert(json.reponse.msg);
						}
					});
				});
			}
		});
	
});