var fDesc=new Array();
fDesc[1] = "marks representing hidden dig sites. You have to complete your treasure collections to unlock them. In this game you’ll be exploring ancient ruins, discovering fabulous treasures and winning piles of coins.";
fDesc[2] = "playing slot machines but without risking your money. With Super 5-Line Slots, you will have four different slot machines in your computer with different themes, to play at any moment and feel as if you were in a real casino.";
fDesc[3] = "personal photos, make creative wallpapers collages, and create fabulous screensaver of all the images, add photoys on the desktop. The tool displays various types of screensavers and collages.";
fDesc[4] = "Jojo Cruz and her daughter Rosalind to make stylish outfits for female and male models as you showcase your fashion sense on runways from L.A. to Berlin.";
fDesc[5] = "themes - Rich graphics artwork - 6 episodes with something new on each one - Post your personal scores to Internet";
fDesc[6] = "good price the users can create and optimize animated GIF images, buttons, banners and other Web graphics that draw the attention of the site's visitors.";
fDesc[7] = "compilations, videos and the CD/DVD file archives. The application comes with an interactive and easy to use graphical user interface making things easier for the user, and comes with many templates, clip arts, fonts and nice background images.";
fDesc[8] = "storyline and superb graphics. Ancient Secrets is the type of game that can be played endlessly by children and adults, as it is entertaining and good to enhance memory skills.";
fDesc[9] = "you make up stunning websites for your business, home or school in just few minutes. It´s not necessary to have any complicated HTML or other programming.";
fDesc[10] = "style and taste to match garments with models, put together trendy outfits, and create signature collections! Create your very own looks in the Design Workshop and add them to unique outfits for bonus cash.";
fDesc[11] = "program. Now this incredible software will allow you to modify according to your needs any picture, photo, image. It has amazing tools, brushes effects, filters and different kind of backgrounds, you can enhance any picture you want with this fabulous software.";
fDesc[12] = ", Orcas, and several other species. This amazing screen saver shows fabulous images of whales who are believed to be the largest animals to have ever lived";
fDesc[13] = "a house; then, you have to organize the yard sale to gain some money. The game basically consists in looking for hidden objects in messy scenes which are the different rooms in the house.";
fDesc[14] = "a fabulous Luxury Cruise and visit 12 exotic islands while collecting attractive keepsakes and quirky postcards. Or be footloose and fancy free, and Island Hop to any layout with no commitments.";
fDesc[15] = "beauty of the marine life directly from your computer. 3D Funny Fish Screensaver can be downloaded from the developer's website and tried out for fifteen days.";
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 = '...';
}
}