startSwapList = function() {
	navRoot = document.getElementById("teamListDiv");
	var picture = document.getElementById('teamMemberPic');
	for (i = 0; i < navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName == "UL") {
			for (j = 0; j < node.childNodes.length; j++) {
				subNode = node.childNodes[j];
				if (subNode.nodeName == "LI") {
					subNode.onmouseover = function() {
						var name = this.title;
						picture.className = picture.className.replace("noDisplay", "");
						if (name == 'kotvas' || name == 'ricker' || name == 'vasquez') {
							var picClass = "landscape";
						}
						else {
							var picClass = "portrait";
						}
						if (pngAlpha) {  // defined in opacity.js
							picture.style.lineHeight = '0px';
							picture.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'/images/team/'+name+'.png\', sizingMethod=\'scale\')'
						} else {
							picture.style.background = 'url("/images/team/'+ name +'low.png")';
						}
            picture.className += " " + picClass;
					}
					subNode.onmouseout = function() { document.getElementById('teamMemberPic').className = "noDisplay"; }
				}
			}
		}
	}
}
