function changeDiv1(divID)
{
var loopCounter = 0;
var imageGroup = new Array(athlete_1,athlete_2,athlete_3,athlete_4,athlete_5)

while(loopCounter < imageGroup.length)
{

imageGroup[loopCounter].style.display = "none";
loopCounter++;

}

divID.style.display = "inline";

}


