var fDesc=new Array();
fDesc[1] = "all know: \"A long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[2] = "long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[3] = "we all know: \"A long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[4] = "invasion to take over the entire solar system! Journey to each planet and fight your way through to save the world (again)! One or two players.";
fDesc[5] = "long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[6] = "long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[7] = "to guide the character while it shoots bricks and obstacles running around the screen and collecting its baby chicks. As in every brick-busting game, you will have power-ups, bonus worms and treasures that will fall over you as the levels progress.";
fDesc[8] = "your magic rifle that will turn the targets into cacti and stones. The size of the file that you download from the given link is only 102 kb., as it is only a downloader. The real size of the game is the reported size.";
fDesc[9] = "film with the same name. In the game, you are in the middle of Oakey Oaks, where you will take the roles of Chicken Little and his friends, Runt-of-the-Litter, Abby Mallard, and Fish-out-of-Water.";
fDesc[10] = "The game story tells that in the deepest darkest jungle lies an abandoned temple. The players must lead Crazy Chicken (the game main character) inside, and travel deep underground to find the elusive Jewel of Darkness.";
fDesc[11] = "the Revenge of the Chicken you will find lots of weapons and special bonuses in order to fight these invaders. All you will need to control the chicken is your mouse.";
fDesc[12] = "the evil chickens that want to destroy them and shoot them all. Use bombs and shoot eggs to all the chicken approaching to kill them before they reach the walls of your area.";
fDesc[13] = "get the worm that is generally on the other side of the road or in the middle. You may also have to get more than one worm per level.";
fDesc[14] = "appearance, can be enjoyed by adults and kids alike. The game is basically a match 3 puzzle with the difference that lines should consist of at least five items. It is very easy to play and has some details that make it really charming and fun.";
fDesc[15] = "every bird that passes flying in front of you. If you hit them, they will become colored ice cubes, that will fall to the grid at the bottom of the screen. You can then swap the position of the colored ice cubes to form a group of three that will be cleared from the grid.";
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 = '...';
}
}