$(document).ready(function() {
	
	// gestion de l'affichage de la nav :
	$('#menu_princ li').mouseover(function(){
		$('#menu_princ li ul').hide();
		$(this).find('ul').show();
		
	});
	$('#menu_princ li').mouseleave(function(){ 
		$('#menu_princ li ul').hide();
		$('#menu_princ li.actif').find('ul').show();
	});
	
	// formulaire de recherche :
	$('#f_recherche input').focus(function() {
		$(this).val('');
	});
	$('#f_recherche input').blur(function() {
		if ($(this).val() == '') $(this).val('Votre recherche...');
	});
	// formulaire inscription à la newsletter :
	$('#f_newsletter input').focus(function() {
		$(this).val('');
	});
	$('#f_newsletter input').blur(function() {
		if ($(this).val() == '') $(this).val('Tapez votre email.');
	});
});



