var fDesc=new Array();
fDesc[1] = "with luxury high class style, elegant atmosphere. Play your favorite games from the comfort of your home!";
fDesc[2] = "away with seriously superb graphics, all the latest games and $888 Free welcome bonus!";
fDesc[3] = "the intense emotion of large sum stakes directly from Las Vegas. Being a single compendium of Casino games for Windows operating system PC, this title is designed to catch the interest of a wide range of players.";
fDesc[4] = "mode\" time is UNLIMITED!";
fDesc[5] = "breath with his sensational graphics and his incredible Bonus of Welcome of ?1177.";
fDesc[6] = "land-based casino. Using a safe and reliable software supplied by Real Time Gaming (RTG), Club World Casino is a good option to try your fortune.";
fDesc[7] = "powered by Playtech's software ensures for a safe and secure online gaming experience. City Club Casino is the right choice.";
fDesc[8] = "times. The roulette, originated in France, is such a fun and addicting game that since its appearance, it has caught many people's attention due to its totally unpredictable nature.";
fDesc[9] = ", Odd, Even - The choice is endless! Remeber, this is a game for fun, no real money can be either lost or won!!";
fDesc[10] = "and even odds. This version includes both European and American type roulettes and has realistic wheel behavior.";
fDesc[11] = "Analyser runs eight of the best Roulette algorithms to determine you best bet.";
fDesc[14] = "games, stunning graphics, and superb music that contribute to an overall exciting gaming experience!";
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 = '...';
}
}