$(document).ready(function() {
	$('.fade').mouseenter(function(){
		$(this).animate().stop();
		$(this).fadeTo('fast', 0.4);
	});
	$('.fade').mouseleave(function(){
		$(this).animate().stop();
		$(this).fadeTo('fast', 1.0);
	});
	
	$("#slider").easySlider({
			auto: true, 
			continuous: true,
			speed: 800,
			pauze: 5000
	});
	
});

