		
	$(document).ready(function() {
			
			$("[name=recherche]").focus(function() { 
				
				if ($(this).val()=="Rechercher...") {

				$(this).val("")
			}			
		
		}).blur(function() { 
				
				if ($(this).val()=="") {

				$(this).val("Rechercher...")
			}			
		
		})


		
			$("[name=email_newsletter]").focus(function() { 
				
				if ($(this).val()=="Votre email...") {

				$(this).val("")
			}			
		
		}).blur(function() { 
				
				if ($(this).val()=="") {

				$(this).val("Votre email...")
			}			
		
		})

	});