var fDesc=new Array();
fDesc[1] = "a local orphanage. To help Sally achieve her noble goal you must assemble teddy bears by using six parts (head, torso, arms and legs) of the same color which move in a conveyor belt.";
fDesc[2] = "factory and you must get ingredients to prepare different products to sell in the market of chocolate. Zürich chocolate is famous all over the world and you must cover the world demand and make your business grow.";
fDesc[3] = "manufacture of chocolates. You’ll have to learn to produce chocolates, get recipes, negotiate with dealers, and go travelling around the world to get some exotic ingredients and hard-to-find recipes. It's a strategy game in which you will be receiving several missions to accomplish.";
fDesc[4] = "will need WinMUGEN installed in your system. WinMugen is a game engine that allows you to fight against different enemies. Fighter Factory will let you create characters from the scratch or modify existing ones, to use them later in your games.";
fDesc[5] = "factory. As all the candies are messed up, you will have to gather them before they destroy everything. You will have to shoot candy from your shooting machine directly to the candy of the same color so that they disappear and they don't destroy everything.";
fDesc[6] = "punished you to work at the Yummy Drink Factory and serve delicious drinks to thirsty villagers as you work your way to freedom. You can unlock tasty new recipes and decorate your shop to keep your patrons happy to earn enough to earn your liberty.";
fDesc[7] = "intended to provide a way for adults and children to get started in the games creation. The Games Factory provides all the stuff you´ll need to manufacture Arcade games, Platform games, Adventures and Screen Savers.";
fDesc[8] = "factory complexes for use in the X3 Reunion space trading and combat simulation game by Egosoft. The program replicates a lot of the functuality of Remco 'Merroc' Jeckman's Excel spreadsheet but you won't need Excel since this is a stand-alone program.";
fDesc[9] = "famous Factory and brands on the market. Control your research and develop your own products, control production and make the marketing and communication strategies to reach great sales.";
fDesc[10] = "their orders of candies. You must produce and select groups of candies in order to complete your costumers needs. This game is a time challenge where you must move fast to complete your task and reach new levels.";
fDesc[11] = "also very entertaining because you keep very busy all time. You need some multitask handling skills in order to succeed in this game. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[12] = "positive impact on the environment around you. You will travel the world, meet interesting people and discover exciting new ingredients and recipes, having a positive effect while improving your business.";
fDesc[13] = "either ‘versus’ or ‘team battle’ modes to utilize various pinball mechanisms. The game includes the four traditional tables: Streets of New York, Factory, Shipwreck, and Bay and two non-traditional games, Island, and Island in the Night.";
fDesc[14] = "behavior is controlled by several AI patterns. The game is complex but at the same time challenging. A good option for strategy fans.";
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 = '...';
}
}