var fDesc=new Array();
fDesc[1] = "physics algorithms which require amounts of simultaneous mathematical and logical calculations to make a simple game display. This is where NVIDIA PhysX Technology comes in.";
fDesc[2] = "powerful proccesors for real time gaming. AGEIA PhysX 8.0 is a free and unique physics engine for all GeForce 8-series, 9-series and 200-series GPUs, bringing an innovative experience when playing the latest games.";
fDesc[3] = "played on Windows, is, arguably, the most stable and best working Nintendo 64 emulator out on the field. In order to play actual commercial games one has to have a ROM file for the game that is going to be played.";
fDesc[4] = "stable and you have a lot of configuration options. Versions 1.3x and below have a different sound engine that is most accurate with the real SNES. Snes9x is good option to play SNES roms.";
fDesc[5] = "once again princess Zelda and her kingdom. The evil ghost Sarcophagus arrives to their land and wants to take it over disrupting all peace. The game contains over one hundred levels, where Link does not necessarily need to fight, but rather solve levels logically.";
fDesc[6] = "playing LBreakout2, and maybe you will remember those days (80's and 90's) when the Arkanoid game used to be played on Atari and later on Nintendo console.";
fDesc[7] = "the videogame era. Relive all games from Sega Master System, Sega Genesis, Sega Game Gear, Nintendo, Super Nintendo, Atari 2600, Gameboy, Gameboy Color, Gameboy Advance and Colecovision.";
fDesc[8] = "You will choose a character that will represent you on the screen. Once done, you will fight against other 28 different Nintendo characters in a platform scenario.";
fDesc[9] = "install it again, because the games are automatically downloaded by PlayNow when you click to update it";
fDesc[10] = "the right place. DS Game Maker allows you to make exciting DS Games, without the need to write a single line of code. Making games with DS Game Maker is a lot of fun. Now there is no reason why you cannot become an amateur or hobbyist game maker. DS Game Maker is the only quick and easy way to bring your ideas to life on the DS.";
fDesc[11] = "version that we all know and love. Beyond that, Zelda Classic allows the development of new quests that can ...";
fDesc[12] = "your computer, iPod, PSP, Xbox 360, PS3, portable media player, mobile phone, digital media appliance, games console and more!";
fDesc[13] = ", Zune, Wii, Nintendo DS / GameBoy Advanced (SD Video), Mobile Phones (3GPP/3GPP2/MP4 compatible) , iRiver, Cliod CP, Palm, Archos, Creative and GPX2.";
fDesc[14] = "up-to-date cheats of PC Games, Dreamcast, PS1, PS2, PS3, DVD Games, Gamecube, N64, NES, SNES, Gameboy, Sega, Xbox cheats + Games Trainers + Games Music.";
fDesc[15] = "Master System, Sega Genesis, Sega Game Gear, Amiga, PC, Nintendo Entertainment System and the Game Boy and is based on the movie of the same name.";
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 = '...';
}
}