$(document).ready(function(){
	$("DIV.TermsHidden UL.Terms").hide();
	$("A.ShowHideTerms").click(function() {
		$(this).parents("DIV.TermsBox").children("UL.Terms").slideToggle("normal");
		$(this).parents("DIV.TermsBox").toggleClass("TermsHidden");
	});
	$("A.ShowArchive").click(function() {
		$("UL.SubCurrent").fadeOut("fast",function() {
			$("UL.SubArchive").fadeIn("fast");
		});
		$("LI.ShowArchive").hide();
		$("LI.ShowCurrent").show();
	});
	$("A.ShowCurrent").click(function() {
		$("UL.SubArchive").fadeOut("fast",function() {
			$("UL.SubCurrent").fadeIn("fast");
		});
		$("LI.ShowCurrent").hide();
		$("LI.ShowArchive").show();
	});
});
