// This parses the html page (DOM)
$(document).ready(function() {
	
	// *********************************************************
	// This programs the right side navigation
	// *********************************************************
	
	//This will hide the subnavigation
	$("#ourWorkHidden").hide();
	
	$("#ourTeamHidden").hide();
	
	
	
	
	//This will show and hide the hidden subnavigation 
	//$("#ourWork").toggle(
//		function() {
//			$("#ourWorkHidden").slideDown("slow"); //can have speeds in either "slow", "fast", or any number number in milliseconds
//		},
//		function() {
//			$("#ourWorkHidden").slideUp("slow");
//		}
//	);
//			
//	$("#ourTeam").toggle(
//		function() {
//			$("#ourTeamHidden").slideDown("slow"); //can have speeds in either "slow", "fast", or any number number in milliseconds
//		},
//		function() {
//			$("#ourTeamHidden").slideUp("slow");
//		}
//	);
});
	
	