function initInput(){
		var inputSearch = document.getElementById('searchMag');
		var inputSearch2 = document.getElementById('searchMag2');
		var inputEmail = document.getElementById('promoEmail');
		var inputNL = document.getElementById('inputNL');
		
		if(inputSearch !=undefined){	
			inputSearch.onclick = function(){
				if(this.value == 'code postal'){
					this.value='';
				}
			}
			inputSearch.onblur = function(){
				if(this.value == ''){
					this.value='code postal';
				}
			}
		}
		if(inputSearch2 !=undefined){	
			inputSearch2.onclick = function(){
				if(this.value == 'Indiquez le code postal'){
					this.value='';
				}
			}
			inputSearch2.onblur = function(){
				if(this.value == ''){
					this.value='Indiquez le code postal';
				}
			}
		}
		if(inputNL !=undefined){	
			inputNL.onclick = function(){
				if(this.value == 'votre adresse email'){
					this.value='';
				}
			}
			inputNL.onblur = function(){
				if(this.value == ''){
					this.value='votre adresse email';
				}
			}
		}
		
		if(inputEmail !=undefined){	
			inputEmail.onclick = function(){
				if(this.value == 'Votre adresse email'){
					this.value='';
				}
			}
			inputEmail.onblur = function(){
				if(this.value == ''){
					this.value='Votre adresse email';
				}
			}
		}
}
addLoadListener(initInput);

