var fDesc=new Array();
fDesc[1] = "you pass the level, otherwise you lose. What is hard about this game is that you don’t have a direct shot to each orange pegs and it’s kind of hard to calculate all the bouncing the ball will do when you shot an indirect ball.";
fDesc[2] = "compare it with the previous edition, so if you are already a Peggle player don’t expect many news of this new version. To pass each level you must hit all orange pegs in the screen before running out of balls to shoot.";
fDesc[3] = "pinball table you can imagine. The process is very interesting, even when it can take some time. Future Pinball will provide everything you need on convenient toolbars on hand. It’s not only a pinball editor but also a simulator so you will be able to play on your tables.";
fDesc[4] = "one-on-one against the computer or alone in the standard mode. The classic game of cribbage features 5 graphical themes with 50 amazing levels of fun and adventure.";
fDesc[6] = "The purpose of the collection is to provide the students with an introduction to programming concepts. You can either take this lesson on-line from the MSDN web page or you can download it to your computer. It doesn’t require any prior knowledge.";
fDesc[7] = "a prisoner in the Bastille. Bastille Solitaire is a modern improved realization of this game.";
fDesc[8] = "game is a classic one, and it has been played since hundred years ago, being very popular in Europe. The rules are very simple and the goal of this puzzle game is to remove all pegs until you have only one peg left.";
fDesc[9] = "balls on color-matching elements with the help of fans, bumpers, teleporters and various dynamic items.";
fDesc[11] = "other by jumping horizontally or vertically over one. Try to finish the board in the minimum number of moves. Work your way through 99 levels.";
fDesc[14] = "guess and gets feedback from the computer. The game is won, when the player solves the computer's secret code with fewer than 8 guesses.";
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 = '...';
}
}