var fDesc=new Array();
fDesc[1] = "which you choose the layout you want to play and the breathtaking Endless mode in which you remove tiles from an ever-rising tower of game pieces. Mahjongg Artifacts is a striking new entry in the fiercely competitive Mahjongg category of casual games.";
fDesc[2] = "your computer, while informs the users about new releases. Through the Game Box, gamers can easily access to the library of Alawar and search its huge collection of popular games.";
fDesc[3] = "cartoon-like graphics, several dozens of bonuses, weapons and treasures, a lots of levels and levelpacks.";
fDesc[4] = "brick-busting game to a new and more thrilling level. Playing Ricochet is very easy, you only have to control you shielded ship with your mouse and destroy all the bricks with the ion sphere.";
fDesc[5] = "dishes, drop dishes off and bring the bills. Help Snowy so his restaurant turns into the best place in town. Enjoy this fun restaurant simulator.";
fDesc[6] = "Nostalgie, Arkanoid The Virtual Isles and Brave Dwarves.";
fDesc[7] = "control Snowy while he runs through catacombs collecting precious rocks and gold, and even digging to find other treasures. While running through the mystery chambers be aware of the enemies.";
fDesc[8] = "has to collect all of the gems, precious statuary and gold bars in each level. You will be only be provided with a pickaxe to dig and be able to collect the items, but no weapons are included.";
fDesc[9] = "who brought you Magic Ball has everything from Grand Prix racing tracks to giant planets spinning through space.";
fDesc[10] = "created to bring you back into the days of old-fashioned game. Developed with up-to-date technologies, Dig McDug includes dozens of game levels, bonuses, lots of gold and great graphics.";
fDesc[11] = "hundreds of stunning jigsaw puzzles. Test your eye for tons of picture sets and a varying number of pieces for you to select. You can choose any level";
fDesc[12] = "action with modern innovations to create a gameplay experience that transcends time.";
fDesc[13] = "babysitting all day. You're now a stork, proud owner of a nursery in which you look after several baby birds at once, which isn't easy. You'll have to prepare food, collect water, sing lullabies and even entertain the young birds.";
fDesc[14] = "featuring amazing new visuals, Arctic Quest 2 will please fans and newcomers alike!";
fDesc[15] = "by removing the monsters from the game filed. Combine monsters of the same color in the groups of four and they will dissappear.";
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 = '...';
}
}