$(document).ready(function(){

	$("#archivesections a").click(function(){
		sectionID = $(this).attr("href").replace(/^.*#/, "");
		// If the section isn't shown yet, show it and hide the visible ones
		if ($("#" + sectionID + ":hidden").length) {
			$(".videosection:visible").hide().removeClass("active");
			$("#" + sectionID).show().addClass("active");

			// Make sure the tabs reflect current status
			$("#archivesections a").removeClass("active");
			$(this).addClass("active");
		}
		return false;
	});

	$("#archive .unit").hide();

	$("#archive h3").click(function(){
		$("#archive .unit").slideUp();
		if ($(this).hasClass("active")) $(this).removeClass("active");
		else {
			$("#archive h3").removeClass("active");
			$(this).siblings(".unit").slideDown();
			$(this).addClass("active");
		}
	});

});