var fDesc=new Array();
fDesc[1] = "file, it will download another 70851816 bytes using your Internet connection, upgrading the game to the latest available version. You must help a young couple to choose and decorate their first house.";
fDesc[2] = "picking items from different locations, following a list provided by the game. You have to look the scenes very carefully, trying to find the items on the list. When you see an item, just click on it to update the list. You can try the game for 60 minutes before buying.";
fDesc[3] = "resembles an aquarium with fish swimming and playing around. Having such a saver is so relaxing. When I stumbled upon Dream Aquarium I was perplexed, but in a good way.";
fDesc[4] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[5] = "frequency, etc.), there are controls for volume, mute, open a file recorded, change channels (back and forward), use full screen mode, TV window mode, record a video, use scheduler. Also you can use auto scan channels.";
fDesc[6] = "will help you solve some situations on the way. In order to finish the level you have to solve some problematic situation that the game propose to you. You can try this game for 30 minutes before you buy the licensed version.";
fDesc[7] = "effects, giving your images a dream-like, almost surrealistic quality. The trial version of the program can be used 30 times. After that, you must purchase a license if you want to keep using it.";
fDesc[8] = ", Faye, has been locked away by Lilith the Fairy Queen of Dreams. She needs your help to navigate the puzzles to discover the origin of the fairies, hunt for dream jewels, seek advice from the foliage, and find your way out of the Eternal Maze.";
fDesc[9] = ", using your video card. Pick up one of the 14 presets or create your own one. Make the difference and have fun! There are no limits.";
fDesc[10] = "frames, flowers, cartoon, jewelry, icon pictures, or write your comments on the photo to make it more beautiful.";
fDesc[11] = "astounding acoustics, and multilayer 3D sound, realistic tilt function and motion blur effects: it's the best pinball experience available on the PC.";
fDesc[12] = "topics that go from Movies, Nature, Animals, Cartoons, Art, and many more. The simple interface will show you thumbnails of each of them so you can easily choose the ones you like the most.";
fDesc[13] = "solitaire games. All thirty solitaire games offer a thorough explanation of how to play in the beginning Some of the solitaire are foundation building type and other discard type.";
fDesc[14] = "people who answer the same, the amount of points you get. If you get no points on an answer, or run out of time before typing the answer, or click the No Answer button, you get a strike. When you get 3 strikes, the game is over for you.";
fDesc[15] = "Dream scenarios, find Seymor and the special item, solve the dream riddles and solve the craking codes with the dream symbols.";
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 = '...';
}
}