function swapGame(newGame) {
  if (newGame == 'kia') {
    $('gamename').innerHTML = "Know-It-All";
    $('gamescreenshot').src="/images/kia/kiashot1.jpg";
    $('smallbox1').className = "smallboxhigh";
    for (var i = 2; i <= 5; i++) {
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href="/knowitall/";
    $('downloadhere').style.display='';
    $('learnmorelink').href="/knowitall/";
    $('gamedesc').innerHTML = "A fast-paced multiplayer trivia game. Compete against yourself, play together with friends, and aim to be the best on the Internet!";
  } else if (newGame == 'soa') {
    $('gamename').innerHTML = 'Sounds of Adventure';
    $('gamescreenshot').src="/images/soa/promoshot1.jpg";
    $('smallbox2').className = 'smallboxhigh';
    for (var i = 1; i <= 5; i++) {
        if (i == 2) { continue; }
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href="/soundofadventure/downloadnow.php";
    $('downloadhere').style.display='';
    $('learnmorelink').href="/soundofadventure/";
    $('gamedesc').innerHTML = 'An imagination-developing sound effect game. Be a high plains drifter, adventurer, galaxy ranger or a Kung Fu master with this pocket app.';
/*
  } else if (newGame == 'rollfor') {
    $('gamename').innerHTML = "Roll For...";
    $('gamescreenshot').src="/images/rollfor/rollforshot1.jpg";
    $('smallbox2').className = "smallboxhigh";
    for (var i = 1; i <= 5; i++) {
      if (i == 2) { continue; }
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href="/rollfor/";
    $('downloadhere').style.display='none';
    $('learnmorelink').href="/rollfor/";
    $('gamedesc').innerHTML = "Roll for init, dexterity, damage or anything else you may need with this interactive virtual dice simulator!";
  } else if (newGame == 'draw') {
    $('gamename').innerHTML = 'Draw!';
    $('gamescreenshot').src = "/images/draw/drawshot1.jpg";
    $('smallbox3').className = 'smallboxhigh';
    for (var i = 1; i <= 5; i++) {
      if (i == 3) { continue; }
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href = '/draw/';
    $('downloadhere').style.display='none';
    $('learnmorelink').href = '/draw/';
    $('gamedesc').innerHTML = 'Test your quickdraw reflexes in this old-timey western shootout!';
*/
  } else if (newGame == 'ci') {
    $('gamename').innerHTML = 'Charge It';
    $('gamescreenshot').src = '/images/ci/promoshot.jpg';
    $('smallbox3').className == 'smallboxhigh';
    for (var i = 1; i <= 5; i++) {
    if (i == 3) { continue; }
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href = '/chargeit/downloadnow.php';
    $('downloadhere').style.display='';
    $('learnmorelink').href = '/chargeit/';
    $('gamedesc').innerHTML = 'A virtual credit card terminal so you can charge cards on the go. Take your point of sale terminal to your point of sale!';
  } else if (newGame == 'countdown') {
    $('gamename').innerHTML = 'Countdown To...';
    $('gamescreenshot').src = "/images/countdown/countdownshot1.jpg";
    $('smallbox4').className = 'smallboxhigh';
    for (var i = 1; i <= 5; i++) {
      if (i == 4) { continue; }
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href = '/countdown/downloadnow.php';
    $('downloadhere').style.display='';
    $('learnmorelink').href = '/countdown/';
    $('gamedesc').innerHTML = 'Got a big event coming up? Tired of answering when the kids ask "Are we there yet?" Now you can solve all these problems <strong>and more</strong> with this nifty app!';
  } else if (newGame == 'antibody') {
    $('gamename').innerHTML = 'Antibody';
    $('gamescreenshot').src = "/images/antibody/abshot1.jpg";
    $('smallbox5').className = 'smallboxhigh';
    for (var i = 1; i <= 4; i++) {
      eval('$("smallbox'+i+'").className="smallbox";');
    }
    $('downloadhere').href = '/antibody/downloadnow.php';
    $('downloadhere').style.display='';
    $('learnmorelink').href = '/antibody/';
    $('gamedesc').innerHTML = '<strong>Antibody</strong> is a quick-reflex game where you pilot a virus past antibody defenses to infect the subject\'s brain!';
  }
}

