
function drawNameLinks(nameStrg) {
	var content = "";
	var contentArray = new Array();
	contentArray.push(new Array("/about/people/bill-anholzer.php","Bill Anholzer"));
	contentArray.push(new Array("/about/people/kristi-arntzen.php","Kristi Arntzen"));
	contentArray.push(new Array("/about/people/sam-ballweber.php","Sam Ballweber"));
	contentArray.push(new Array("/about/people/lindsay-beiriger.php","Lindsay Beiriger"));
	contentArray.push(new Array("/about/people/emily-bell.php","Emily Bell"));
	contentArray.push(new Array("/about/people/stacey-bryan.php","Stacey Bryan"));
	contentArray.push(new Array("/about/people/joe-buscher.php","Joe Buscher"));
	contentArray.push(new Array("/about/people/eladio-canibano.php","Eladio Canibano"));
	contentArray.push(new Array("/about/people/david-colo.php","David Colo"));
	contentArray.push(new Array("/about/people/ryan-coyle.php","Ryan Coyle"));
	contentArray.push(new Array("/about/people/kathy-daugherty.php","Kathy Daugherty"));
	contentArray.push(new Array("/about/people/matt-dimarino.php","Matt DiMarino"));
	contentArray.push(new Array("/about/people/kirsten-dirkes.php","Kirsten Dirkes"));
	contentArray.push(new Array("/about/people/","Max Duckler"));
	contentArray.push(new Array("/about/people/suzanne-duckler.php","Suzanne Duckler"));
	contentArray.push(new Array("/about/people/rosa-figueroa.php","Rosa Figueroa"));
	contentArray.push(new Array("/about/people/jeremy-fisher.php","Jeremy Fisher"));
	contentArray.push(new Array("/about/people/robin-fogelson.php","Robin Fogelson"));
	contentArray.push(new Array("/about/people/gerald-freda.php","Gerald Freda"));
	contentArray.push(new Array("/about/people/liz-fritz.php","Liz Fritz"));
	contentArray.push(new Array("/about/people/adam-gregory.php","Adam Gregory"));
	contentArray.push(new Array("/about/people/adam-hall.php","Adam Hall"));
	contentArray.push(new Array("/about/people/jerome-halligan.php","Jerome Halligan"));
	contentArray.push(new Array("/about/people/stephanie-hammergren.php","Stephanie Hammergren"));
	contentArray.push(new Array("/about/people/maridelle-hannah.php","Maridelle Hannah"));
	contentArray.push(new Array("/about/people/mike-hansel.php","Mike Hansel"));
	contentArray.push(new Array("/about/people/krista-hennings.php","Krista Hennings"));
	contentArray.push(new Array("/about/people/tom-hinkley.php","Tom Hinkley"));
	contentArray.push(new Array("/about/people/donna-horn.php","Donna Horn"));
	contentArray.push(new Array("/about/people/jill-jacobson.php","Jill Jacobson"));
	contentArray.push(new Array("/about/people/emma-kluge.php","Emma Kluge"));
	contentArray.push(new Array("/about/people/chris-leininger.php","Chris Leininger"));
	contentArray.push(new Array("/about/people/dan-linden.php","Dan Linden"));
	contentArray.push(new Array("/about/people/dave-louapre.php","Dave Louapre"));
	contentArray.push(new Array("/about/people/matt-lynch.php","Matt Lynch"));
    contentArray.push(new Array("/about/people/brittany-mammenga.php","Brittany Mammenga"));
	contentArray.push(new Array("/about/people/erik-martz.php","Erik Martz"));
	contentArray.push(new Array("/about/people/markie-marzolf.php","Markie Marzolf"));
	contentArray.push(new Array("/about/people/jessica-matelski.php","Jessica Matelski"));
	contentArray.push(new Array("/about/people/morgan-mccann.php","Morgan McCann"));
	contentArray.push(new Array("/about/people/jason-mitchell.php","Jason Mitchell"));
	contentArray.push(new Array("/about/people/jarrod-moore.php","Jarrod Moore"));
	contentArray.push(new Array("/about/people/kyle-murray.php","Kyle Murray"));
	contentArray.push(new Array("/about/people/tyler-nelson.php","Tyler Nelson"));
	contentArray.push(new Array("/about/people/mel-nicnick.php","Mel Nicnick"));
	contentArray.push(new Array("/about/people/lise-offerman.php","Lise Offerman"));
	contentArray.push(new Array("/about/people/matt-offerman.php","Matt Offerman"));
	contentArray.push(new Array("/about/people/nate-otterdahl.php","Nate Otterdahl"));
	contentArray.push(new Array("/about/people/marsha-radford.php","Marsha Radford"));
	contentArray.push(new Array("/about/people/sandy-robeck.php","Sandy Robeck"));
	contentArray.push(new Array("/about/people/elizabeth-rojas.php","Elizabeth Rojas"));
	contentArray.push(new Array("/about/people/alexia-sartin.php","Alexia Sartin"));
	contentArray.push(new Array("/about/people/corey-scherbing.php","Corey Scherbing"));
	contentArray.push(new Array("/about/people/lori-nesheim.php","Lori Nesheim"));
    contentArray.push(new Array("/about/people/kate-schlagel.php","Kate Schlagel"));
	contentArray.push(new Array("/about/people/shawn-schueller.php","Shawn Schueller"));
	contentArray.push(new Array("/about/people/kati-stevens.php","Kati Stevens"));
	contentArray.push(new Array("/about/people/mike-walters.php","Mike Walters"));
	contentArray.push(new Array("/about/people/casey-wambsganss.php","Casey Wambsganss"));
	contentArray.push(new Array("/about/people/brian-weber.php","Brian Weber"));
	contentArray.push(new Array("/about/people/davis-wille.php","Davis Wille"));
	contentArray.push(new Array("/about/people/christine-woods.php","Christine Woods"));
	
	content = "<div><ul>";
	var half = Math.round(contentArray.length/2-1);
	
	//alert("half: "+half);
	for (n=0;n<contentArray.length;n++) {
		if (contentArray[n][1] == nameStrg) {
			content += "<li class=\"active\"><a href=\""+contentArray[n][0]+"\">"+contentArray[n][1]+"</a></li>";
		} else {
			content += "<li><a href=\""+contentArray[n][0]+"\">"+contentArray[n][1]+"</a></li>";
		}
		//alert ("n: "+n);
		if (n == half) {
			//alert ("n: "+n+"  half: "+half);
			content += "</ul></div><div><ul>";
		}
	}
	content += "</div></ul>";
	document.getElementById('mySlides').innerHTML = content;
}

