if (document.images) {

  team1on = new Image();
  team1on.src = "../_images/g_team_osterman_on.jpg";
  team2on = new Image();
  team2on.src = "../_images/g_team_cron_on.jpg"; 
  team3on = new Image();
  team3on.src = "../_images/g_team_haidet_on.jpg";
  team4on = new Image();
  team4on.src = "../_images/g_team_vanleur_on.jpg";
  team5on = new Image();
  team5on.src = "../_images/g_team_hill_on.jpg"; 
  team6on = new Image();
  team6on.src = "../_images/g_team_prather_on.jpg";
  team7on = new Image();
  team7on.src = "../_images/g_team_broughton_on.jpg";
  team8on = new Image();
  team8on.src = "../_images/g_team_ysmith_on.jpg";
  team9on = new Image();
  team9on.src = "../_images/g_team_bullock_on.jpg";
  //team10on = new Image();
  //team10on.src = "../_images/g_team_kuhn_on.jpg";
  team17on = new Image();
  team17on.src = "../_images/g_team_Campbell_on.jpg";
  team25on = new Image();
  team25on.src = "../_images/g_team_Zeleznik_on.jpg";
    
  team1off = new Image();
  team1off.src = "../_images/g_team_osterman_off.jpg";
  team2off = new Image();
  team2off.src = "../_images/g_team_cron_off.jpg";
  team3off = new Image();
  team3off.src = "../_images/g_team_haidet_off.jpg";
  team4off = new Image();
  team4off.src = "../_images/g_team_vanleur_off.jpg";
  team5off = new Image();
  team5off.src = "../_images/g_team_hill_off.jpg";
  team6off = new Image();
  team6off.src = "../_images/g_team_prather_off.jpg";
  team7off = new Image();
  team7off.src = "../_images/g_team_broughton_off.jpg";
  team8off = new Image();
  team8off.src = "../_images/g_team_ysmith_off.jpg";
  team9off = new Image();
  team9off.src = "../_images/g_team_bullock_off.jpg";
  team10off = new Image();
  team10off.src = "../_images/g_team_kuhn_off.jpg";
  team17off = new Image();
  team17off.src = "../_images/g_team_Campbell_off.jpg";
  team25off = new Image();
  team25off.src = "../_images/g_team_Zeleznik_off.jpg";

}

function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}