var fDesc=new Array();
fDesc[1] = "being the basketball game with the best graphics on any platform. However, graphics is not everything when it comes to sport games. Its competitor, NBA 2K8 is the best game when it comes to playability.";
fDesc[2] = "Hockey is one of their strong suits. I am not big fan of ice hockey, but I can appreciate the fundamentals behind it. From what I could gather by playing the demo of this game, the visuals are stunning.";
fDesc[3] = "with players from around the world. Each delivery returns us to the current NBA season, updating players, incorporating data, and so on.";
fDesc[4] = "2002 had sucked so bad that I was really not going to get NBA Live 2003. However, this game, which is the first NBA game ever released on the PC, was quite OK. The game featured nice graphics for the time.";
fDesc[5] = "that NBA Live 2002 had sucked so bad that I was really not going to get NBA Live 2003. However, this game, which is the first NBA game ever released on the PC, was quite OK. The game featured nice graphics for the time.";
fDesc[6] = ", that is hard not to fall in love with it. I am a basketball fan. I play the sport and watch a lot of it. When this game came out, I was forced to buy it.";
fDesc[7] = "last year, so it best crowned the best basketball game on the PC. However, this year NBA 2K9 made its grand debut on PC. NBA Live 08 followed the line of its previous games. The game featured great graphics all throughout.";
fDesc[8] = "play for hours. The game allows you to play an 3-on-3 exhibition game or an entire season. It features astonishing colorful graphics, with different scenarios and locations, which make the game even more fun and attractive.";
fDesc[9] = "and fortunately it does it for good. It seems that programmers have emphasized gaming experience, since in this new NBA Live game it is greater, deeper and more realistic.";
fDesc[10] = "your street player before joining a match. After each match, you gain experience points that will help improve your attributes. The game has a few problems but is free and the matches are very fun.";
fDesc[11] = "forecasts for football, baseball, ice hockey, soccer, basketball, futsal, handball, volleyball, rugby and more.";
fDesc[12] = "play this game and you will be devoured by its idea, new features, effects and music. Start your basketball game and be a champion!";
fDesc[13] = "league, teams, and players. Play unlimited seasons with franchise mode.";
fDesc[14] = "displays that you see above the backboard when you watch a basketball game. It displays the period time, the shot clock, the number of team fouls, the scores, the possession and the fouls for all the players.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}