// JavaScript Document

$(document).ready(function(){
	
	$('.helper_ident').each(function(el){
		$(this).click(function(e){
			e.preventDefault();
			var popup_lost_id = $(this).parents("div.boite_connection").find('.popup_lost_id').eq(0);
			popup_lost_id.fadeIn();
		});
		
	});
	
	
	
	$('.mail_lost_ident').focus(function(e){
		if(this.value == this.defaultValue){
			this.select();
		}
	});
  
  $('#close_popupLostIdent').click(function(event){
    $('#popup_lost_ident').hide();
  });
	
});

