function theTeam(id, src) {
	var list = ["ray", "tonya", "brian", "unclefunky", "evan", "lucresy"];//"danielle",
	for(i = 0; i < list.length; i++) {
		if(list[i] != id) {
			document.getElementById(list[i]).src = src+list[i]+".png";
		}
	}
	
	var browser = navigator.appName;
	
	document.getElementById(id).src = src+id+"-s.png";

	var divId = "TeamContent";
	if(id == "tonya") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>TONYA REED<br/>CEO / Master Stylist</strong></p>"+
		"<p>"+
		"Tonya's been a budding actress starring in a neighborhood church play before a huge audience of 15 at the ripe age of 10. She's sold candy, flipped burgers, sold mini blinds, sold real estate, blossomed gift baskets and mastered mail sorting for the USPS while sleeping with her eyes open--now you know what happened to the bill you never received. Through a fabulous twist of fate, destiny lead Tonya to co-found her true entrepreneurial love, Uncle Funky's Daughter Salon and Boutique."
		+"</p>";
	} else if(id == "unclefunky") {
		document.getElementById(divId).innerHTML =
		"<p><strong>UNCLE FUNKY<br/>Muse</strong></p><br/>"+
		"<p>"+
		"I bet you didn’t know that I was not a math guy. In fact, in elementary school I preferred drawing cars over multiplication any day. An artist and jokester at heart, I guess I shouldn’t be surprised that my daughter takes that honestly after me. Where she found this dreaded picture of me on this ridiculous bunny is beyond me!!! In the words of Tony Montana, “You wanna play rough. That’s Ok!” I got some pictures, my baby…oh, I got pictures!"
		+"</p>"+
		"<p>"+
		"My nick name is Jim Bob, my favorite place to chill is heaven, my favorite fruit is pomegranate and if I were a shoe I would be a flying Converse Chuck Taylor."
		+"</p>";
	} else if(id == "ray") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>RAY REED<br/>CFO</strong></p>"+
		"<p>"+
		"I am the CFO…Chief <strong>FINANCIAL</strong> Officer, not Chief Writing Officer, but since I’ve been threatened  at penpoint to write something about myself, I digress. I just don’t get it when people don’t follow the rules. Oh, that’s right I digressed already. Besides my gift for numbers, I bet you didn’t know that I can style a woman from head to toe…that I love toffee covered pecans, just about anything with cheese, my favorite quote is cash only, my favorite book is Rules of the Game by K. Alonzo Harts, my preferred color is green and if I were a shoe I would be a gator, baby. Done, are you happy? Now back to my real job."
		+"</p>";
	} else if(id == "brian") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>BRIAN EDISON<br/>Photographer</strong></p>"+
		"<p>"+
		"A bio? What? I don’t do writing. Duh? I’m the PHOTOGRAPHER! Alright, since somebody obviously wants revenge for the last five hour shoot, here are my inner most thoughts sans the blood type. I bet you didn’t know that I hate being in front of the camera. After all, I do the directing not the acting. Bet you also didn’t know I love women. I love women. I love curves…on women. I also really dig Honduras and New Orleans, for obvious reasons. I’m also pretty smitten over green Thompson grapes but they’re not quite as interesting as my first love."
		+"</p>";
	} else if(id == "joi") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>JOI MARIA PROBUS<br/>Copy Editor</strong></p>"+
		"<p>"+
		"If I were a shoe, I would definitely be a high-heeled Mary Jane because it’s a little bit proper and a little bit cheeky.  It wouldn’t be leather though, because that is totally against my vegan standards.  Born in Motown U.S.A., the city of music, its pure irony that I am addicted to words…and Harry Potter.  Any Harry Potter, even the ones that have yet to come out.  It’s amongst the things I just can’t live without, right up there with my husband, laughter, shoes and soy…and not necessarily in that order."
		+"</p>";
	} else if(id == "evan") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>EVAN DAVIS<br/>Client/Brand Model</strong></p>"+
		"<p>"+
		"If I could be anyplace in the world, I would be in my mama’s kitchen or my kitchen.  Hey, what can I say.  I’m a foodie.  My favorite being fried green tomatoes, which is a no brainer since I’m a Southern girl from Montgomery, Alabama.  My other favorite, Dentyne Ice-Artic Chill, go figure.  Other than eating, I also enjoy learning, reading and time with family and friends."
		+"</p>";
	} else if(id == "timeka") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>TIMEKA MOORE<br/>Social Media Coordinator</strong></p>"+
		"<p>"+
		"I bet you would never guess that I have no patience and I am semi-fluent in Chinese.  No seriously.  I wouldn’t ask you to guess though, because I can’t stand people who play mind games.  To that end, I love chocolate, writing, basketball, peace, strawberries and anything green and leafy.  There you have it."
		+"</p>";
	} else if(id == "danielle") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>DANIELLE FORD<br/>Brand Ambassador</strong></p>"+
		"<p>"+
		"Sleep is the most precious gift ever.  In fact, if I could, I would not go to work most days so I could sleep more.  You should try it. It’s one of my favorite things.  Right up there with writing, music and Jalapeno Cheetos.  Hey, don’t knock it until you’ve tried it."
		+"</p>";
	} else if(id == "lucresy") {
		document.getElementById(divId).innerHTML = 
		"<p><strong>LUCRESY WEATHERSPOON<br/>Global Brand Manager</strong></p>"+
		"<p>"+
		"Okay, try not to laugh too hard.  My most embarrassing moment was when I was on a roller coaster at Fiesta Texas and my 14-inch ponytail came off and flew in the crowd.  Even after that experience, I still can’t live without my hair extensions or “protective styles”.  My son Chase, wonderful hubby and reality T.V. are ranked very highly too, although, one of the joys of being mommy means that my reality T.V. fix usually gets overruled by Spongebob."
		+"</p>";
	} 
	return false;
}

