// JavaScript Document

var isIE = (window.ActiveXObject)?true:false;

/*enlarges the clicked box*/
function boxUp(objId){
	boxDown();
	var currBox = document.getElementById(objId);
	var currWhiteBox = document.getElementById(objId + "Box");
	var currSubHead = document.getElementById(objId + "SubHead");
	var attributeClass = (isIE)?"className":"class"; 
	currBox.setAttribute(attributeClass,"pageBoxL");
	currWhiteBox.setAttribute(attributeClass, "whiteBoxL");
	currSubHead.setAttribute(attributeClass, "subHeadL");
}

/*shrinks all boxes*/
function boxDown(){
	var attributeClass = (isIE)?"className":"class";
	document.getElementById('overview').setAttribute(attributeClass, "pageBox");
	document.getElementById('why').setAttribute(attributeClass, "pageBox");
	document.getElementById('industry').setAttribute(attributeClass, "pageBox");
	document.getElementById('clients').setAttribute(attributeClass, "pageBox");
	document.getElementById('bios').setAttribute(attributeClass, "pageBox");
	document.getElementById('contact').setAttribute(attributeClass, "pageBox");

	document.getElementById('overviewBox').setAttribute(attributeClass, "whiteBox");
	document.getElementById('whyBox').setAttribute(attributeClass, "whiteBox");
	document.getElementById('industryBox').setAttribute(attributeClass, "whiteBox");
	document.getElementById('clientsBox').setAttribute(attributeClass, "whiteBox");
	document.getElementById('biosBox').setAttribute(attributeClass, "whiteBox");
	document.getElementById('contactBox').setAttribute(attributeClass, "whiteBox");

	document.getElementById('overviewSubHead').setAttribute(attributeClass, "subHead");
	document.getElementById('whySubHead').setAttribute(attributeClass, "subHead");
	document.getElementById('industrySubHead').setAttribute(attributeClass, "subHead");
	document.getElementById('clientsSubHead').setAttribute(attributeClass, "subHead");
	document.getElementById('biosSubHead').setAttribute(attributeClass, "subHead");
	document.getElementById('contactSubHead').setAttribute(attributeClass, "subHead");
	
	//unHideBio('1');
	//document.getElementById('hideIt1').style.display = "none";
	//document.getElementById('hideIt2').style.display = "none";
}

