var fDesc=new Array();
fDesc[1] = "hard not to compare the game with Legos, though it doesn't have the license it does have the fun. It is an excellent choice of game for those young builders out there.";
fDesc[2] = "Digs and Marine Mania for the players imagination to fly free while they are taking caring for more than 100 land, seas and extinct creatures in the most amazing and realistic possible way.";
fDesc[3] = "previous editions there is no much new to tell because the game is pretty much the same, only changes its location. For those who haven’t played the previous editions of this game, let’s say that this is a strategy game related to construction and real estate business.";
fDesc[4] = "under the direction of Sid Meier at Firaxis Games studies and Firefly Studios. This game is about building cities along the history of Rome and bringing them to their splendour.";
fDesc[5] = "Cross´ method, the loads can be single or distributed. The main utility of this program, targeted at architects and construction engineers, would be to optimize joint positions (i.e. positions with zero moment) in purlins or beams.";
fDesc[6] = "happy since it’s all about camping. To be precise, you won’t be exactly camping. Instead of that, you’ll be able to build the camping site of your dreams. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[7] = "strategy game, built from the perspective of an evil mastermind that just want the world domination, spreading the fear with the power of an ultimate doomsday weapon. Very original and fun!";
fDesc[8] = "Sketchup. With this component you access to multiple 3D models of construction accessories to design your house, office or any other building.";
fDesc[9] = "homes for the Tower Toons. The game can be played in four different modes: \"Story\", \"Quick Game\", \"Time Challenge\" and \"Party Game\". But you´ll have to play some levels in the Story mode in order to unlock the other modes.";
fDesc[10] = "watermarks to your image (GIF, PNG, BMP, JPEG, TIFF), video (AVI, Mpeg, DVD, WMV, QuickTime, Mpeg 4, RealMedia, DV) and flash files. It also allows you to convert your files to multiple formats. You can add text, image and audio files, rectangles or blurred areas as watermarks.";
fDesc[11] = "scenario. This game is a great challenge of speed and mind order, different tasks will be needed at the same time and you must be able to solve them.";
fDesc[12] = "flying airplanes, driving tanks, firing artillery and parachuting behind enemy lines. Build your own worlds and scenarios using the World Builder.";
fDesc[13] = "program includes several predefined crossword puzzles on subjects like History, Geography, Language, and so on. It also includes more than 50 predefined shapes, and the posibility of creating you own.";
fDesc[14] = "construction of a bridge and see if it actually works or not, by testing it. The higher the level, the more difficult and bigger the bridge to build. Test your engineering capacity with this great simulation game.";
fDesc[15] = "Geo3D allows you to create your projects in three dimensions. This program features dragging too, and if you drag a part of a free object, the program will change the rest of your construction accordingly.";
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 = '...';
}
}