$(document).ready(function(){	
	$("#slider").easySlider({ 
		auto: true,
		continuous: true,
		controlsShow:	false
	});
	$("#slider").show();
	
	$('.eventos,.actividades').mouseover(function(){
		$('.mas',this).show();
	}).mouseout(function(){
		$('.mas',this).hide();
	});
});	
