$(function(){
	$("#news div:odd").addClass("alt");
	$("#bottom-schedule").hide();
	$("#top-schedule li:odd").addClass("alt");
	$("#bottom-schedule li:even").addClass("alt");
	$("#schedule-tab").click(function() {
		$("#bottom-schedule").slideToggle();
		$(this).toggleClass("close");
		});

});