var fDesc=new Array();
fDesc[1] = "to 28 different weapons to choose from, travelling from the sunny South to the frozen North across the whole country, and on a safari in Africa. We can play online against others members in any tournament already created or we can create our own for them to join in.";
fDesc[2] = "forests spanning 8 hunting regions.";
fDesc[3] = "you communicate with your headquarters, and keep track of your investigation. The game itself, basically consists on looking and picking items from different locations, following a list provided by the game.";
fDesc[4] = "a great simulation game that allows you to play a single game or a party mode. Challenge a friend and have a great shooting emotion.";
fDesc[5] = "your sights on the prey of a lifetime. Unique action-packed missions will get your quarry running and your heart pu";
fDesc[6] = "tough challenges.";
fDesc[7] = "test your hunting skills against wild animals in settings like New Zeland, Montana and others. You will need good senses to track and hunt. It has three modes: easy, medium, and hard.";
fDesc[8] = ", cd-Rom, and Playstation 2 players that offers them a challenging hunting game experience. Players of this hunting game are challenged with 96 fast-paced hunting missions that take place across 24 simulated states and provinces of the USA.";
fDesc[9] = "yourself if you are novice, master or expert of this craft and perfect your skills. Simple rules,real drive. Free to play and download.";
fDesc[10] = "this particular sport, because it can cause strong emotions. You have to kill as many animals as you can and prevent being killed by bears or mooses. You have five shots available before you have to reload your weapon.";
fDesc[11] = "of video game, because until the first title of the series was released, there was no hunting simulator game available. I have to say that Deer Hunter was one of the best sellers games in the U.S.";
fDesc[12] = "miss. But the objective of the game is not just to shoot birds, but to shoot as many birds as you can.";
fDesc[13] = "stripped woman you will notice that this game has an excellent quality and perfect graphics!";
fDesc[15] = "adventure. Version 1.2 features a few new sound effects and a couple of bug fixes. Bouldermouse is a variant of much-cloned gem hunting game Boulderdash. In this outing there are 3D rendered graphics and a spoken introduction sequence, but the main game is much the same.";
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 = '...';
}
}