$(document).ready(function(){
	
	$('#events-list .event').each(function() {
				
		$(this).hover(function() {
			$(this).addClass('rollover');
		}, function() {
			$(this).removeClass('rollover');
		});
	
	});
	
});
