/**
 * @author Javier
 */
$(document).ready(function(){
	$(".event_list tr:odd td").css({backgroundColor:'#e4e4e4'});
	$(".myDate").each(function(){
		var newAlt = $(this).attr("href").split("&");
		for (var p in newAlt){
			$(this).attr("id",newAlt[p].replace(/date\=/,''));
		}
	});
	$(".myDate").hover(
		function(){
			$("."+$(this).attr("id")+" td").addClass("dateSelected");
		},
		function(){
			$("."+$(this).attr("id")+" td").removeClass("dateSelected");	
		}
	);
});

