// JavaScript Document

function setActive(tabID) { 
	if (tabID == "home"){

		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentHome"); 
		currTabElem.setAttribute("className", "currentHome"); 
		return; 

	}else if(tabID == "contact"){
	
		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentContact"); 
		currTabElem.setAttribute("className", "currentContact"); 
		return; 
	
	}else if(tabID == "company"){
	
		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentCompany"); 
		currTabElem.setAttribute("className", "currentCompany"); 
		return;
	
	}else if(tabID == "branding"){
	
		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentBranding"); 
		currTabElem.setAttribute("className", "currentBranding"); 
		return;  
	
	}else if(tabID == "marketing"){
	
		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentMarketing"); 
		currTabElem.setAttribute("className", "currentMarketing"); 
		return; 
	
	}else if(tabID == "web"){
	
		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentWeb"); 
		currTabElem.setAttribute("className", "currentWeb"); 
		return;  
	
	}else if(tabID == "medical"){
	
		var currTabElem = document.getElementById(tabID); 
		currTabElem.setAttribute("class", "currentMedical"); 
		currTabElem.setAttribute("className", "currentMedical"); 
		return;
	
	} 
}