$(document).ready(function() {
	$("ul#manucuristNav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background-color' : '#FC85A1'}); //Add background color and image on hovered list item
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

	$('#siteEmailBox').focus(function() {
	 if (this.value == "Inscrivez-vous") {
	 	this.value = ''; 
	}});
	
	$('#siteEmailBox').blur(function() {
	 if (this.value == '') {
	 this.value = "Inscrivez-vous"; 
	}});
});

