var fDesc=new Array();
fDesc[1] = "HP device. It is now available for online downloading. It is primarily aimed at printing, it supports JPG, JPEG, BMP, PNG y GIF images. It allows us to import our photos from a memory card, printer, camera, PC, CD, scanner, etc.";
fDesc[2] = "DinerTown and it is filled with babies to be looked after. The game is about baby management. The game has 50 levels. You have to start from basic and move to expert at every level.";
fDesc[3] = "accepted to “Caregivers International”, a company that provides healthcare and in which you’ll be working as a maternity ward nurse. You’ll have to feed, burp, bathe, change the diapers and soothe the babies.";
fDesc[4] = "Teach children the Alphabet,Numbers,Count ing,Reading and Spelling using sound,pictures and video clips. Includes Story reading, Flash words and Spelling. You can also create your own Spelling words using your pictures, voice and video clips.";
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] = "represent Carrie again. After the adventure of taking care of babies in the six continents around the world, you’ve adopted a child in Africa called Safi, and now you’re back ready for your next adventure: preschool. You’ll have to teach the kids painting, writing, shape-sorting, and much more.";
fDesc[7] = "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[8] = "the most popular and traditional Nursery Rhymes. There is a menu from where we can select our most cherished rhymes (Humpty Dumpty, London Bridge, Ring A' Roses, Jack and Jill, Little Bo Beep, and so on) and learn their tunes and lyrics.";
fDesc[9] = "all know that babies are indeed delivered by storks. It the only fact that we humans know for sure. In this game, you can see how the whole process goes. Babies are first manufactured in a factory, where conveyor belts take them into several machines to assemble them.";
fDesc[10] = "Children can choose among the seven different rooms within it and the backyard. In the babies´ room, children can learn several activities to entertain the babies like feeding them, making them play with toys or picking a story from the book to read them.";
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] = "also very entertaining because you keep very busy all time. You need some multitask handling skills in order to succeed in this game. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[13] = "for their babies. HippoName’s database includes over 26.000 baby names divided by genre (male, female). Each name record shows the meaning of the name and its origin. It also includes a column to mark those names that you like the most.";
fDesc[14] = "their needs like feeding them, sleeping them, playing, and curing them. Earn money keeping babies happy and go to the store to upgrade your things, like the bed, your shoes, and other items that will help you make your job faster.";
fDesc[15] = "machines, and users have to work fast to be the best employee creating the highest number of babies. The game includes three different game modes: story, manic and free play. It features great graphics, sound effects and suitable music.";
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 = '...';
}
}