var fDesc=new Array();
fDesc[1] = "take the user from World War I to the modern day and back to World War II. This particular game takes you to the South Pacific Ocean and helps relive the scenarios of the Japanese-American battles.";
fDesc[2] = "your aim. To begin with, you can create your own soldiers and military units, choosing your soldiers from the several force task characters that were inspired by the real forces from all over the world, such as SAS, Delta Force, or KFS.";
fDesc[3] = "flash based massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style if we compare it with other MMORPGs.";
fDesc[4] = "you expect. This game includes shooting, fire, weapons and equipment, special effects, intense battles, worthy adversaries. I think you won’t be bored, as you are waited for different surprises and real challenges.";
fDesc[5] = "after Oahu. You can drive through the streets and hills on over 125 vehicles licensed for the game. With good challenges and a solid multi-player support this game is a fine choice for car junkies.";
fDesc[6] = "keyboard as accurately as possible. The game is pretty much a port of games like Guitar Hero and Rock Band, but for the PC, Mac and Linux. That is one of its greatest features: that no matter what computer you have, you can play it.";
fDesc[7] = "developers, enabling them to capture the developmental progress of products from the design stage, then step-by-step, all the way to final manufacturing and Technical Publishing ready for Purchasing.";
fDesc[8] = "stages which are called challenges, as we must prove ourselves as top chefs. In each challenge we must create different recipes in a limited time. To create a recipe you must follow some steps. In each step you must use different flavors that must fit the ones required by the judges.";
fDesc[9] = "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[10] = "of Luke, in the driving seat, to destroy a death star with 30 rebel ships in the Battle of Yavin, which is based on the Star Wars film.";
fDesc[11] = "very entertaining. Each level has a task of finding hidden objects. Every time you finish a challenge, new mini games and tasks will challenge you, like puzzles, spotting differences and making matches.";
fDesc[12] = "tasks required by the game. This demo version can´t be registered to become a registered version. Should you wish to buy the complete game (named \"Crazy Machines Gold\"), you will need to follow the provided link.";
fDesc[13] = "Dream scenarios, find Seymor and the special item, solve the dream riddles and solve the craking codes with the dream symbols.";
fDesc[14] = "sound and music. Graphics are highly detailed with full color with the easy to learn concept. Jewel logic provides environment for the novice maturing to an expert by unlimited levels of challenges.";
fDesc[15] = "ride personalized themed choppers, challenging their racing skills on a variety of missions and earning style points to unlock new bikes, along the way.";
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 = '...';
}
}