var fDesc=new Array();
fDesc[1] = "digital image. Is a powerful product, yet easy to use. It includes the basic functions needed for a beginner and the more complex functions used by pros.";
fDesc[2] = "shop. You can sell flowers in bouquets which is twice profitable than selling single flowers. You can try this game for 60 minutes before you buy the licensed version. There are some discounts for GameServer Members.";
fDesc[3] = "graduated from college and is looking for an interesting and challenging job. In the game introduction she applies for a café manager position and receives a call from its owner to hire her. There’s where the game begins. Now you have to help Emily to run the café as good an efficiently as possible.";
fDesc[4] = ", Challenge Mode, Relax Mode and Expert Story. The Story mode will tell you a story, where you receive by mail blueprints for a machine, you build it, and the result is a robot that makes burgers. You decide to run a burger shop.";
fDesc[5] = "Huntington's shop owners find more than 1,200 unique and cleverly hidden items for their customers and earn enough cash to open a shop of your own. This \"hidden object\" game will bend your brain and dazzle your eyes.";
fDesc[6] = "sizes and colors/textures, which you can modify in a variety of ways. The first obvious way in which you can play with these buttons is by changing the text inside them. This is done by simply selecting a button and writing some text in its text field.";
fDesc[7] = "put out of business by Mr. Big’s mega conglomerate MegaPet. Now, you have to sell pets, please customers and transform the pet shop into a successful thriving boutique! You can try this game for 60 minutes before you buy the licensed version.";
fDesc[8] = "Sell gems and jewelry to smiling customers, but watch out--keep them waiting too long and they'll start to grumble. Special tokens allow you to upgrade your shop with more jewelry and customer treats.";
fDesc[9] = "start a new business, a flower shop at a beautiful island. Your goal is to help Meg expand her business to other locations. To do so, you have to help Meg reach a daily cash goal before the day is over, while keeping demanding customers satisfied.";
fDesc[10] = "timed game where you will have limited time to finish your task. Each level of this game will increase the difficulty and you will have less time to finish the game.";
fDesc[11] = "2. Advanced players can take advantage of this great and powerful tool by designing clothing, skins, and accessories, and at the same time also generating unique-looking facial features and providing their sims with amusing hair colors.";
fDesc[12] = "big city success. Earn a lot of big city experience and then start to renovate a run-down theater helping shoppers in an Espresso Shop, Newsstand, Spa, and more!";
fDesc[13] = "“analyzer” platform. Analyzers show the order and you have to make the item as pictured. Making clothes is pretty easy. First you have to make the cloth, then the fabric and finally the print. Fabricators make the cloth, patternizers cut the shape and doodazzlers add prints.";
fDesc[14] = "have to find the objects that are listed on the screen and click on them to get points and to pass the levels. The game is played only with the mouse, so it will be easy for anyone to play it and have a nice time.";
fDesc[15] = "features colorful and spectacular graphics, great sounds and an addictive gameplay. To get the game, you first have to install the iWin Games Manager and the game will be downloaded and installed automatically.";
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 = '...';
}
}