/**
 * @author Tony Sahraoui
 * v. 1.1
 */

$(document).ready(function(){

        /* *** NEWSLETTER *** */
	$("#text").focus(function () {
		if($(this).val() == "Entrez votre Email..."){
			$(this).val("");	
		}
	});
	$("#text").blur(function () {
		if($(this).val() == ""){
			$(this).val("Entrez votre Email...");	
		}
	});
    
});
