// code for navigation

$(document).ready(function() {
	$(".nav").ready(function() { // scan the page for any navigations
		$(".sub").toggle(); // hide the sub menus
		
		$(".sub").parent().mouseover(function(){
			$(this).children(".sub").toggle(); // show the sub menu
		});
		
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").toggle(); // hide the sub menu
		});
	});

	$("a.linkMap1").click(function() {
		$("#mapBox2").hide();
		$("#mapBox1").toggle();
 		$("#main").addClass("opBox");
		});

	$("a.linkMap2").click(function() {
		$("#mapBox1").hide();
		$("#mapBox2").toggle();
		$("#main").addClass("opBox");
		});
	$("#mapBox2").click(function() {
		$("#mapBox2").hide();
		$("#main").removeClass("opBox");
		});

	$("#mapBox1").click(function() {
		$("#mapBox1").hide();
		$("#main").removeClass("opBox");
		});

});