var fDesc=new Array();
fDesc[1] = "away with seriously superb graphics, all the latest games and $888 Free welcome bonus!";
fDesc[2] = "promotions going on only at All Slots.";
fDesc[3] = "mode\" time is UNLIMITED!";
fDesc[4] = "automated and live assist mode; 96 instant carts; advanced automatic crossfading using 1 soundcard; automatic time announcement support; and much more.";
fDesc[5] = "addition, check the All Jackpots website to see promotions going on only at All Jackpots.";
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 = '...';
}
}