var fDesc=new Array();
fDesc[1] = "been here for a long time now. The game is just not what it used to be. So with Undercover, they tried to go back to its origins. The game now has cut-scenes and a plot. You are an undercover agent.";
fDesc[2] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[3] = ", but be careful not to loose your quality of service or you will be loosing customers as well. Enjoy this great salon simulator game.";
fDesc[4] = ", but stage after stage we must get enough money to buy new equipment and upgrades. In order to get money we must serve as many customers as we can by making and selling them different items. A previously specified amount of money must be reached to be able to get to the following stage.";
fDesc[5] = "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[6] = "will keep you playing for hours. Something great about this game is that it combines the classical puzzle mode with an adventure going on on the screen.";
fDesc[7] = "contact with the customers. What you have to do is to locate the correct ingredients in the kitchen and click on them. This can be harder than it sounds because the kitchen you are working at is a real mess.";
fDesc[8] = "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[9] = "add new services to your salon; customers will love you and will bring their pets directly to your salon.";
fDesc[10] = "boutique and help the business grow up to earn more money and keep on progressing. You will have different customers asking you for some clothes and you will have to design them and join them in packs to deliver them to your customer.";
fDesc[11] = "the pets, cut their hair and much more. After just one day working at Pet Corp, our character is fired and she decides to create her own pet shop. As with any new business we must buy furniture, equipment and lots of things.";
fDesc[12] = "to open a cooking school. Graphics are colorful and sounds are really pleasant to your ears. You will have a good time with it.";
fDesc[13] = "lot of time and money building model railroads in their backyards, for example. With this game, you can do it all from your PC without spending an additional dime.";
fDesc[14] = "to guess the most popular answers the people gave to a certain question. While this new edition doesn’t have much of a change, it still offers the good things. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[15] = "prison. When he's out, he decides to kill the policeman that caught him. You are that policeman's brother, and you are searching for revenge. Armed with a car and a shotgun you decide to go to the small town in Mexico where your brother's killer and his gang were last seen.";
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 = '...';
}
}