$(document).ready(function() {
	//MENU
	$('.mt03 ul').hide();
	$('.mt03').css({'overflow':'visible'});
	

	
	$('.mt01 ul').hide();
	$('.mt01').css({'overflow':'visible'});
	
	$('.mt01').mouseenter(function(){
		$('.mt01 ul').show();
	}).mouseleave(function(){
		$('.mt01 ul').hide();
	});
	
	$('.mt03').mouseover(function(){
		$('.mt03 ul').show();
	}).mouseout(function(){
		$('.mt03 ul').hide();
	});
	
	//ALERTE EMAIL -----------------------------
    //code pour menu top
    //switch de l'image de fond pour le champ recherche du menu-top avec changement de la couleur de police
	$('#s').focus(function() {
	  	$('#mtRecherche').css({'background-image':'url('+template_url+'/images/mt-recherche_thisfocus.png)'});
	  	$('#s').css('color','#828282');
		
	  	$('#s').focusout(function() {
			//alert('sortie');
			$('#mtRecherche').css({'background-image':'url('+template_url+'/images/mt-recherche_off.png)'});
	  		$('#s').css('color','#fff');
		});
	});
	
	//si click sur bouton fermer masquer la div #alertemail
	$("#BTNfermer a").click(function(){
		//alertemail
		// $('#alertemail').css('display','none');
		$('#alertemail').fadeOut(800);
		
		return false;
	});
	$("a#alertMail").click(function(){
		//alertemail
		// $('#alertemail').css('display','none');
		if($.cookie('connexion_espaceperso') == null)
			$('#alertemail').fadeIn(800);
		else
			window.location.replace(urlwebsite+"/mon-espace-perso/");
			
		return false;
	});
	
	$("#BTNAlerteEmail").click(function(){
		//$('#alerteEmail').submit();
		$.ajax({
		  url: template_url+"/scripts/php/nobei.connexion_usr.php",
		  type: 'post',
		  data: "alerteEmailChamp="+$('#alerteEmailChamp').val()+"&alertePWChamp="+$('#alertePWChamp').val(),
		  success: function(data){
			  if(data == 1){ 
			  		$.ajax({
						  url: template_url+"/scripts/php/nobei.connexion_crm.php",
						  type: 'GET',
						  data: "alerteEmailChamp="+$('#alerteEmailChamp').val()+"&alertePWChamp="+$('#alertePWChamp').val(),
						  success: function(data){
							 $('#alerteZoneConnexion').html(data);//window.location.replace(urlwebsite+"/mon-espace-perso/");
							 //on crée un cookie de session
							 $.cookie('connexion_espaceperso', 'yes');
							 setTimeout(function(){ window.location.replace(urlwebsite+"/mon-espace-perso/")}, 400);
						  }
						});
			  }
			  else{
				$('#infoalerte-email').show(); 
			  }
		  }
		});
	});
	
	
	//VERIFICATION DU FORUMULAIRE EXPERTISE -----------------------------
	
	/*$('#bouton-expertise').click(function(){
		if($('input[name="nom"]').val() == "")
			alert("Veuillez remplir le champ nom");
		if($('input[name="nom"]').val() == "")
			alert("Veuillez remplir le champ nom");
	});*/
});

