var textNodeName = "aboutText";  // Change this name to be the id of the node you want to swap text 
var textNode;

var networkText = "<font color=\"#333333\"></font><Stringbean Design founders, Kathy Sigstad and Gino Burich have combined their creative backgrounds with a solid grasp of graphic design. They have been joyfully collaborating on projects since meeting at design school in 2000. <br>Each holds a Bachelor degree in Communication Design. ";

function SwapText(menuItem) {
   		if(textNode == null)
			textNode = document.getElementById(textNodeName);
			
				
		if(textNode != null && menuItem != null) {
	
			if (menuItem == "menuNetwork")
				textNode.innerHTML = networkText; 
			else if (menuItem == "menuKathy")
				textNode.innerHTML = KathyText;
			else if (menuItem == "menuSheri")
				textNode.innerHTML = SheriText; 
		}
	}


	


function onMenuSelect(menuItem, oldClass, newClass) {
	SwapText(menuItem);
	SwapSelectedMenuItem(menuItem, oldClass, newClass);
}
	
	
var lastActiveLinkID = 'menuNetwork'; // default selectd link when page first loads
function SwapSelectedMenuItem(menuItem, oldClass, newClass) {
	
	// reset old link class
	if (lastActiveLinkID != null) {
		var identity=document.getElementById(lastActiveLinkID);
		identity.className=oldClass;
	}
		
	// set new link class
	identity=document.getElementById(menuItem);
	identity.className=newClass;
		
	// save last link id
	lastActiveLinkID=menuItem;
	
}


