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] = "enjoy this challenge in a battle against the thiefs of your treasures. Collect your treasures and ancient pieces to rest your soul and enter the after life.";
fDesc[3] = "When you create the match, those tiles disappear from the board and are filled up with new relics and artifacts. Sometimes, the new tiles will create new matches triggering a chain reaction. If you create matches over the stone tiles, you pass the level.";
fDesc[4] = "fabled Golden Jewel Board. Uncover hidden jewels, and then use those jewels to complete your quest. While playing with a mysterious jewel board, their daughter Natalie unknowingly pops open a secret compartment...";
fDesc[5] = "match together relics from Ancient Egypt. Blue cells will disappear when you make a match over them. You must make all blue cells disappear to advance to the next level. When an artifact appears, you must move it to the bottom of the board, making matches.";
fDesc[6] = "collect antique artifacts for the Titanic Museum. The player needs to dive into 17 ship locations for clues that are deeply hidden but will lead you to the ultimate artifact: The Crown Jewels!";
fDesc[7] = ", you are given the task of uncovering the secret treasures hidden there by the Incas for hundreds of years. With great graphics and a match-3 game play, Treasure Puzzle is a great option among";
fDesc[8] = "items and some hints in case you get stuck. What makes this game different from others of the kind, is that in this one you are not only supposed to be finding items and picking them up from a scene, but you also have to put them in their correct spots in other scenes.";
fDesc[9] = "games like Zuma or Luxor. The launched ball must have the same color of at least two other adjacent balls. Then, the whole group will disappear. You have to eliminate every ball in the chain before it reaches the central skull, or you´ll lose a life.";
fDesc[10] = "Whenever we take photos with a mobile phone camera, we have to face vignetting, poor color appearance, poor sharpness & contrast, and also JPEG compression artifacts related issues with our photos, so these photos are not perfect for albums,";
fDesc[11] = "menu bar, one toolbar, two windows and in the foot of the program we can see an advanced box, a filter strenghtt and two buttons more.";
fDesc[12] = "colored points. In the world of photo such artifacts are called noise. Because of the noise great frames can be damaged. Topaz Denoise is a great plug-in for Adobe Photoshop that was developed for reducing noise level of photos.";
fDesc[13] = "Scruff has hidden valuable artifacts throughout the Scruff home and if they can locate them all they won't have to sell their family home. Join the Scruffs on a scavenger hunt in The Scruffs Deluxe!";
fDesc[14] = "your golden gondola, sling costly coins, launch lovely lyres and ricochet ruby rings into their corresponding spaces overhead. But don't let the artifacts fall into the water, or Venice is doomed!";
fDesc[15] = "gather pearls that will allow you to purchase special powers, you will also be able to use different powerups and earn trophies.";
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 = '...';
}
}