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/bob-index.png\" alt=\"Bob Lyons - Senior Programmer - Kansas City Web Design\"></a>';
theTeam[2] = '<a href=\"our-team.html\"><img src=\"images/index_bio/chrisb-index.png\" alt=\"Chris Boyle - Web Development Manager  - Kansas City Web Design\"></a>';
theTeam[3] = '<a href=\"our-team.html\"><img src=\"images/index_bio/chris-index.png\" alt=\"Chris Wilson - Creative Director  - Kansas City Web Design\"></a>';
theTeam[4] = '<a href=\"our-team.html\"><img src=\"images/index_bio/todd-index.png\" alt=\"Todd Lubacz - Graphic Designer  - Kansas City Web Design\"></a>';
theTeam[5] = '<a href=\"our-team.html\"><img src=\"images/index_bio/vestal-index.png\" alt=\"Vestal Cook - Web Developer  - Kansas City Web Design\"></a>';
theTeam[6] = '<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[7] = '<a href=\"our-team.html\"><img src=\"images/index_bio/caitlin-index.png\" alt=\"Caitlin Hitchcock - Project Assistant  - Kansas City Web Design\"></a>';
theTeam[8] = '<a href=\"our-team.html\"><img src=\"images/index_bio/drew-index.png\" alt=\"Drew Irwin - Regional Business Manager  - Kansas City Web Design\"></a>';
theTeam[9] = '<a href=\"our-team.html\"><img src=\"images/index_bio/rob-index.png\" alt=\"Rob Love - Web Developer  - Kansas City Web Design\"></a>';
theTeam[10] = '<a href=\"our-team.html\"><img src=\"images/index_bio/ryan-index.png\" alt=\"Ryan Bodnar - President - Kansas City Web Design\"></a>';

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