$(document).ready(function() {
	$("#event-list").find("td.data").hover(
		function(){
			$(this).parent().find("td").addClass("hover");	
		},
		function(){
			$(this).parent().find("td").removeClass("hover");			
		}
	);
	
	$("#event-list").find("td.data").click(function(){
		if ($(this).parent().find(".eventid").text().length > 0)
			window.location = "event.cfm?eventid=" + escape($(this).parent().find(".eventid").text()) + "&returnurl=" + escape(window.location);
	});
	
	$("#month-selector").change(function() {
		$(this).parent().submit();
		return true;
	});
});
