function mainmenu(){
  $("#mainNav ul ").hide();
  $("#mainNav li").hover(function() {
    clearTimeout($.data(this, 'timeout'));
    $(this).find('ul:first').show(400);
  }, function() {
    $.data(this, 'timeout', setTimeout($.proxy(function() { 
       $(this).find('ul:first').hide();
    }, this), 500));
  });
}
 
 
$(document).ready(function(){					
	// TRIGGER MENU
	mainmenu();
	
	// SUB MENU
	$("#mainNav ul ul").parent().find("a:first").addClass("sub");
	
	// SLIDER
	$("#slider").easySlider({
	  auto: true,
	  continuous: true 
	});
	
	// LES BOUTONS
	$(".button").each(function () {
    	  var button = $(this).text();
   	  $(this).html("<span>"+button+"</span>")
  	});
});
