$(document).ready(function() {
	$(".newsUpdateYear").css("cursor", "pointer").click(function() {
		$("#Update_" + $(this).text()).toggle();
		$(this).toggleClass("newsUpdateYearExpanded");
	}).hover(
		function() {
			$(this).css("text-decoration", "underline")
		},
		function() {
			$(this).css("text-decoration", "none")
		}
	).addClass("newsUpdateYearContracted").first().toggleClass("newsUpdateYearExpanded");
	$(".newsArchivesTable").hide();
	$(".newsArchivesTable:first").show();
});
