// JavaScript Document


$(document).ready(function() {


	<!--  NAVIGATION  -->
	$("#navigation ul li.sous-menu").hover(function() {
		$(this).find('a:eq(0)').css({ 'background-color' : '#555'});
		$(this).find("div.menu").show();
	} , function() {
		$(this).find('a:eq(0)').css({ 'background' : 'none'});
		$(this).find("div.menu").hide();
	});
	
	Cufon.replace('.cufon, .titre');

});


jQuery(function($){
	
	$('.autoEmpty').each(function(){
		var defaultValue = $(this).val();
		$(this).focus(function(){
			if($(this).val() == defaultValue){
				$(this).val('');
			}
		});
	});
	
	
	$('.autoEmpty').each(function(){
		var defaultValue = $(this).val();
		$(this).blur(function(){
			if($(this).val() == ''){
				$(this).val(defaultValue);
			}
		});
	});
	

});
