$(function (){
	var input = $("#solrsearch").get();
	var label = "Mots clés...";
	
	$(input).each(function() {
		if(this.value =='') {this.value = label;}
	});
	
	$(input).focus(function() {
		if (this.value == label) {this.value = '';}
	});
	
	$(input).blur(function() {
		if (this.value == '') {this.value = label;}
	});

});

$(function (){
	var input = $("#mailinglist-email").get();
	var label = "E-mail...";
	
	$(input).each(function() {
		if(this.value =='') {this.value = label;}
	});
	
	$(input).focus(function() {
		if (this.value == label) {this.value = '';}
	});
	
	$(input).blur(function() {
		if (this.value == '') {this.value = label;}
	});

});