	/* 	6 lines of jQuery does it all
		When a <a> is clicked in .alt_menu,
		Hide all sibling <div> elements, on the same level as the <a> that was clicked
		And show the <div> next to the <a> clicked
	*/

	jQuery(function() {
		jQuery(".alt_menu_reveal").click(function(event) {
		    
			event.preventDefault();
			
			jQuery(this).siblings("div").hide("slow");
			jQuery(this).next().show("slow");
		});
	});
