var fDesc=new Array();
fDesc[1] = "Prix Mode, Extreme Mode, Time Trial, Training Mode and Multiplayer * All 24 riders from the 2004 Season * Race online along with 15 more players. Buy it online for a really affordable price.";
fDesc[2] = "while playing a game. Featuring good graphics and sounds, Saints & Sinners Bingo takes an adventure format in which you have to compete and travel on other venues what makes the game even more fun.";
fDesc[3] = "group three or more of the same color and make them disappear from the board. The game includes 88 original levels with incredible backgrounds and objects from the Ancient Egypt including chalices, temples, ruins, murals and headdresses";
fDesc[4] = "variety of games that are going to make the player feel as if he is in a real Casino. It includes Table Games, such as: Craps, Pai Gow Poker, Roulette, Tri-card Poker, Baccarat";
fDesc[6] = "Many different game variations. Contains tutorial. Addictive games of combination and luck, worldwide played with cards or tile sets like Rummikub.";
fDesc[7] = "money and have a great time while playing. Millionaire Casino offers a huge variety of games, from the all-time classic card and table games, to the most innovative slots machines.";
fDesc[8] = "case numbers shapes – hidden in a messy scenario. The basic idea is to visualize numbers created by any kind of elements in the scene you are looking at. You can try this game online without time restrictions.";
fDesc[9] = "graphics and neat sound effects; with the new 3-D Cue Stick view make the shots easier or choose an easy to shark-level opponent or grab a friend and play in two-player mode. Hammerhead Pool to Go offers";
fDesc[10] = "queen of spades. Needs the Tams11 Lobby from www.tams.com for online play.";
fDesc[11] = "recommendations, number of outs, over card percentages, online poker tells, pocket card ranks, pocket card nicknames and much more.";
fDesc[12] = "from taking three tricks. Be careful not to get euchred!";
fDesc[13] = "is equipped with computer players for solo play, or play multiplay with the Tams11 Lobby. www.tams11.com";
fDesc[14] = "casino games from the confort of your office or home. Playgate Casino brings to you a complete range of more than 100 casino games, including, poker, blackjack, slot machines, and classic card games with all the betting options of a land-based casino.";
fDesc[15] = "score. Klondike solitaire card game is playable directly out of your browser, without need to download. All the fun and features of solitaire.";
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 = '...';
}
}