$(document).ready(function(){
	setupSiteMap();
});

function setupSiteMap(){
	$("#site-map-btn").click(function(){
			$(this).toggleClass("active");
			$("#site-map").slideToggle(600);
	});

	//A click to the "Change Location" button should also open the menu.
	//This allows the user to find the international office links in the sitemap
	//This button will invoke the #site-map-btn click function since it's behavior identical
	$("#location-link > a").click(
		function(){
			$("#site-map-btn").click();
	});
	
		$("#close-site-map > a").click(
		function(){
			$("#site-map-btn").click();
	});


}

