// JavaScript Document
$(document).ready(function(){
	
	$("input[@name='Mail']", $("#AbonNewsLetter")).focus(function(){
		if ( $(this).val() == 'Entrez ici votre e-mail')
			$(this).val('');
	})
	
	$("input[@type='image']", $("#AbonNewsLetter")).mouseover(function(){
		$(this).attr('src', 'http://www.azenda.fr/images/bt_Sabonner_Red.jpg');
	});
	$("input[@type='image']", $("#AbonNewsLetter")).mouseout(function(){
		$(this).attr('src', 'http://www.azenda.fr/images/bt_Sabonner_Bla.jpg');
	});
	
	$("#AbonNewsLetter form").submit(function(){
		$(".msgErreur").html('&nbsp;');
		$(".msgErreur", $(this) ).html('&nbsp;');
		if ( $("input[@name='Mail']", $(this)).val() .length == 0 
			 ||  !/.*@.*\..*/.test( $("input[@name='Mail']", $(this)).val()) ){
			$(".msgErreur").text('Erreur sur le mail');
			return false;
		}
	});
});