
	$(document).ready(function() {
		$("a.menu").click(function(event) {
			event.preventDefault();
			$("a.active").removeClass("active");
			$(this).blur().addClass("active");

			if ($(".box.shown").attr("id") != this.id) {
				$(".box.shown").removeClass("shown").hide("drop", { direction: "down" });
				$(".box#" + this.id).show("fold").addClass("shown");
			}
			else {
				$(".box#" + this.id).hide("fold", function() { $("a#" + this.id).removeClass("active"); }).removeClass("shown");
			}
		});
	});
	//