$(document).ready(function() {
						   
	$('#archivesButton a').click(function(event) {
		if ($("#archives").css("display")== "none")
			{
			$("#archives").css({ display:'block' });
			$("#archivesButton a").html('Close Archives');
			}
		else
			{
			$("#archives").css({ display:'none' });
			$("#archivesButton a").html('View More');
				
			}
		event.preventDefault();
	});
	
});

