function randomTeam() {
var theTeam = new Array();

// ADD DELETE OR EDIT AGENTS HERE - CONTINUE WITH THE FORMAT PATTERN OF COURSE
theTeam[0] = '<a href=\"our-team.html\"><img src=\"images/index_bio/adam-index.png\" alt=\"Adam Cossette - Systems Architect - Kansas City Web Design\"></a>';
theTeam[1] = '<a href=\"our-team.html\"><img src=\"images/index_bio/boyle-index.png\" alt=\"Chris Boyle - Web Development Manager  - Kansas City Web Design\"></a>';
theTeam[2] = '<a href=\"our-team.html\"><img src=\"images/index_bio/todd-index.png\" alt=\"Todd Lubacz - Creative Lead  - Kansas City Web Design\"></a>';
theTeam[3] = '<a href=\"our-team.html\"><img src=\"images/index_bio/vestal-index.png\" alt=\"Vestal Cook - Web Developer  - Kansas City Web Design\"></a>';
theTeam[4] = '<a href=\"our-team.html\"><img src=\"images/index_bio/ed-index.png\" alt=\"Ed McCullough - Business Development Director  - Kansas City Web Design\"></a>';
theTeam[5] = '<a href=\"our-team.html\"><img src=\"images/index_bio/ryan-index.png\" alt=\"Ryan Bodnar - President - Kansas City Web Design\"></a>';
theTeam[6] = '<a href=\"our-team.html\"><img src=\"images/index_bio/kristie-index.png\" alt=\"Kristie Maples - Project Manager - Kansas City Web Design\"></a>';
theTeam[7] = '<a href=\"our-team.html\"><img src=\"images/index_bio/kunjan-index.png\" alt=\"Kunjan Shah - Senior Programmer - Kansas City Web Design\"></a>';
theTeam[8] = '<a href=\"our-team.html\"><img src=\"images/index_bio/leban-index.png\" alt=\"Leban Hyde - Graphic Designer - Kansas City Web Design\"></a>';


var p = theTeam.length;
var whichTeam = Math.round(Math.random()*(p-1));
document.writeln(theTeam[whichTeam]);
return;
}