var fDesc=new Array();
fDesc[1] = "table and card games like Baccarat, Blackjack, Casino War, as well as three types of roulettes and more than 30 slots machines, including the classic reel slots, multi line slots and original multi spin slots.";
fDesc[2] = "away with seriously superb graphics, all the latest games and $888 Free welcome bonus!";
fDesc[3] = "mode\" time is UNLIMITED!";
fDesc[4] = "other great casino games available. Receive up to $500 on your first deposit!";
fDesc[5] = "Casino understands that there is nothing more important than happy players. It puts son much efforts to make your experience with them the best it can be. Any problems you might have, they treat in a professional and timely manner.";
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 = '...';
}
}