$(function() {
	$("#activities").find(".spotlight").hide().end().find("LI")
		.hover(show_spotlight, hide_spotlight);
		//TODO Melhorar accessibilidade
	
	function show_spotlight() {
		$(this).find(".spotlight").show();
	}
	
	function hide_spotlight() {
		$(this).find(".spotlight").hide();
	}
});