var fDesc=new Array();
fDesc[1] = "a medieval world of fantasy and role-playing game. Plot: In a kingdom that had everything you should have: peace, happiness and prosperity, the King did not have children, then they prayed to the gods to give them that blessing.";
fDesc[2] = ", snapshot, e-mail and categorize Flash files in just one click!";
fDesc[3] = "to success on your game life. You start having to go to college, the game will make you study and be nice with your family. You will get points by delivering coffee to your professor, love to your mother, and entertainment and fruits to all the people in the house.";
fDesc[4] = "to follow the instructions you are given in each level and accomplish them as fast as you can. Your tasks include make up the girls, dress them up, and get her hair, nails and accessories done to finally go to the stage and be judged.";
fDesc[5] = "to take care of them. Build the most amazing kindergarten in the city making kids happy in your place. Increase your popularity in the society and more parents will bring their babies to your place.";
fDesc[6] = "the babysitter of baby monsters. Some of the actions you have to take care of are: placing babies in a crib for a nap, putting hungry babies in a high chair to be fed, after a fight, put both babies band-aids on, among others.";
fDesc[7] = "little pleasure! Download and install this amazing screen saver to your PC and you will find a magic world full of wonderful beauty and nice fishes living on the shore of the fairy lake!";
fDesc[8] = "will have the opportunity to enjoy the chants of happiness, along with beautiful photographs of Makah and the Kabah. One of the best aspects of this screen saver is that the chants are in English, so now you will be able to enjoy the music and understand what they are saying.";
fDesc[9] = "sheer happiness carrying you away to the seventh heaven. Put it on your screen and enjoy the pure perfection. If you are in love and are looking for a way to express your feelings to your sweetheart, then this romantic screen saver is just what you need.";
fDesc[10] = "principal character of this holiday: Santa Claus. That jolly old man who is in charge of bringing happiness to all the children. You will be able to see a typical and beautiful scene of a town with its houses covered with snow and decorations everywhere.";
fDesc[11] = "is a young woman in the babysitting business who’s obviously not afraid of monsters, since the special thing of her business is that she takes care of baby monsters instead of baby humans.";
fDesc[12] = "simulation. Kudos is a great simulation game that allows you to move as a normal person in a simulated city, doing different activities that will bring you benefits as in real life.";
fDesc[13] = "happiness of Santa Claus to your screen. You will listen to his characteristic Jo Jo Jo, as he flies by your home driving his sled pulled by the faithful reindeers.";
fDesc[14] = "magical place. You will visit a small pretty village high on a mountain. As you start walking on the streets, you will see, and almost feel, that you are walking on snow. Everything around you is covered with a white blanket that gives a sense of tranquility.";
fDesc[15] = "calendar,Relationship Calendar, Partnership Calendar,Job Calendar, Health Calendar,Chinese lunar Calendar... based on Chinese Astrology.";
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 = '...';
}
}