<!--
       function changeExperts(boxName) {
	//set the object to a variable, so we can simplfy the code
		theBox = document.getElementById(boxName);
	//if the class equals our visible code, set the class to the new box style, else set the class to the visible box style
	if (theBox.className == "roundblock") {
		theBox.className = "orangeblock";
	} else {
		theBox.className = "roundblock";
	}
}


   function changeProducts(boxName) {
	//set the object to a variable, so we can simplfy the code
		theBox = document.getElementById(boxName);
	//if the class equals our visible code, set the class to the new box style, else set the class to the visible box style
	if (theBox.className == "roundblock") {
		theBox.className = "greenblock";
	} else {
		theBox.className = "roundblock";
	}
}


 function changeIndustries(boxName) {
	//set the object to a variable, so we can simplfy the code
		theBox = document.getElementById(boxName);
	//if the class equals our visible code, set the class to the new box style, else set the class to the visible box style
	if (theBox.className == "roundblock") {
		theBox.className = "blueblock";
	} else {
		theBox.className = "roundblock";
	}
}


function changeService(boxName) {
	//set the object to a variable, so we can simplfy the code
		theBox = document.getElementById(boxName);
	//if the class equals our visible code, set the class to the new box style, else set the class to the visible box style
	if (theBox.className == "roundblock") {
		theBox.className = "tanblock";
	} else {
		theBox.className = "roundblock";
	}
}

//-->