$(document).ready(function(){ 
	$('.clic').hover(function() {
		$(this).css({
			'cursor':'pointer'
		});
		$(this).stop().animate({ 
			'opacity':0.6
		}, 200);
	}, function() { 
		$(this).stop().animate({ 
			'opacity':1
		}, 200);
	});
	
	$('.events').ulslide({
		effect: {
			type: 'slide', // slide or fade
			axis: 'y',     // x, y
			distance: 40   // Distance between frames
		},
		duration: 1000,
		autoslide: 5000,
		width: 900,
		height: 15,
		mousewheel: true
	});
});
