		$(document).ready(function()
		{
			
			$("#slider").easySlider({
		auto: true,
		continuous: true,
		prevText:'',	
		nextText:'',
		pause:10000
		});

			$('.cat-img img').hover(function() { 
				$(this).stop().animate({"opacity": 0.7}); 
			},function() { 
				$(this).stop().animate({"opacity": 1}); 
			});	
			$('.default-item').hover(function() { 
				$(this).stop().animate({"opacity": 0.7}); 
			},function() { 
				$(this).stop().animate({"opacity": 1}); 
			});	
			
				//effet bounce
		
   
		});
		
