/**
 * @author Tony Sahraoui
 * v. 1.1
 */

$(document).ready(function(){

        /* *** NEWSLETTER *** */
	$("#newsletter #text").focus(function () {
		if($(this).val() == "Entrez votre Email..."){
			$(this).val("");	
		}
	});
	$("#newsletter #text").blur(function () {
		if($(this).val() == ""){
			$(this).val("Entrez votre Email...");	
		}
	});
    
        /* *** MEMBERS *** */
	$("#memberName").focus(function () {
		if($(this).val() == "Adresse e-mail..."){
			$(this).val("");	
		}
	});
	$("#memberName").blur(function () {
		if($(this).val() == ""){
			$(this).val("Adresse e-mail...");	
		}
	});
	$("#memberPassword").focus(function () {
		if($(this).val() == "*******"){
			$(this).val("");	
		}
	});
	$("#memberPassword").blur(function () {
		if($(this).val() == ""){
			$(this).val("*******");	
		}
	});
});
