$(document).ready(function(){
  $('.imageproduit').hover(
    function(){
      $(this).stop().fadeTo('slow',0.6);
    },
    function(){
      $(this).stop().fadeTo('slow',1);
    }); 
			
  $('#dispo li:even').css('background-color' ,'#e3e3e3');
	
  $('.errorBox').click(function(){
     $(this).fadeOut('slow');
    });
	  
  $('.tipsyKit').tipsy({gravity: 'n'});
  $('.tipsyKitD').tipsy({gravity: 'w'});
});
