$(function () {
	$(".nav h3 a").click(function() {
		var container = $(this).attr('class') + "_nav";
		$("." + container).toggle();
	});
});
