// JavaScript Document


/*This function enable us to changes the color of the navigatioin tab when that tab is the curtrent selected tab. It also makes it
possable to change the color of the selected tab when it it hovered */

function globalNav (num){
	
	
	for(var i=1; i<=7; i++){
		
		
		document.getElementById("navG"+i).className="";
		}
		document.getElementById("navG"+num).className="selected"

}




/* This function enable us to changes the color of the service section navigatioin tab when that tab is the curtrent selected tab. It also makes it
possable to change the color of the selected tab when it it hovered.  This function only covers then service section navigation of the site.*/



function servNav (num){
	
	
	for(var j=0; j<=9; j++){
		
		
		document.getElementById("Stab"+j).className="";
		}
		document.getElementById("Stab"+num).className="selected"
		
		
}




/*This function enable us to changes the color of the navigatioin tab when that tab is the curtrent selected tab. It also makes it
possable to change the color of the selected tab when it it hovered x


fuction teamInfo(num) {
	
	for(var i=1; i <=4; 1++) {
		
		document.getElementById("teamTab" + i).className = "";
		document.getElementById("teamBox" + i).className = "teamInfobox";
	}
		document.getElementById("teamTab" + num).className = "";
		document.getElementById("teamBox" + num).className = "teamInfobox enabled";
}

*/