$(document).ready(function() {
	
	$('.menu_image').hover(function(){
		
		$('#titre_menu').html($(this).attr('alt') + "<br />");
	
	}, function (){
		
		$('#titre_menu').html("menu principal ------------------- <br />");	
		
	});
	
	
	// Input du newsletter	
	$('#newsletter').focus(function(){
		$(this).val("");
	});
	
	$('#newsletter').blur(function(){
		if($(this).val() == '')
		{
			$(this).val("Inscrivez votre courriel");
		}
		
	});

	
	
}); 

