var fDesc=new Array();
fDesc[1] = "moments together. The screensaver will show you two hearts filled with Love, Passion, Romance, and many other feelings related to this great day.";
fDesc[2] = "developer’s website. It has been issued to celebrate its 15th anniversary and it features the original Mighty Morphin Power Ranger squad. We must save the world from the evil forces, solve puzzles, and fight the enemies.";
fDesc[3] = "carefully, trying to find the items on the list. When you see an item, just click on it to update the list. In order to finish the level you have to find all the items on the list. In each level, you have to find the “special clue” to finish it.";
fDesc[4] = "celebrate our own party. In sum, this stuff pack presents the following additions: * It Permits to hold a party. * It Adds five new styles of music (Hawaiian, Rave, Techno, Rap and Disk). * New interactions and activities.";
fDesc[5] = "extra zing. muvee Christmas stylePack is suitable for Christmas moments, winter themed pictures/videos. Just add this to your muvee Style Repository & make you Christmas & Winter Vacation out of this world";
fDesc[7] = "is a special program and not only for music lovers. All of us are used to celebrate parties in all kind of situations, and is not so comfortable to be your own dj or to ask to a friend or a relative to become one.";
fDesc[8] = "celebrating something. Whether New Year, Christmas, Independence Day or any other important celebration, it is usually not complete without a dazzling display of fireworks in the sky.";
fDesc[9] = "will help you fight the melancholic feelings that we sometimes get in the middle of the year, remembering how happy we were during the season of Christmas and New Year. As soon as the program starts, you will see the classic Christmas tree scene, with decorations and lights.";
fDesc[10] = "numbers that affect your life. Master Numerology bases on your birth date and your full name to analyze your personality and report the results to you.";
fDesc[11] = "Jack-O’Lanterns are sure to light up your holiday! Scary yet lovable pumpkins appear on your screen to celebrate as well as decorate for the greatest candy-eating day of the year.";
fDesc[12] = ", probably near a mountain. You will arrive to a park, with a small plaza in the middle. Everything around you is white, covered with snow. Around the small plaza you can distinguish the shapes of the houses of the town.";
fDesc[13] = "You will delight in cheerful pumpkins flying around kind magicians and fairies playing with merry ghosts.";
fDesc[14] = "joyous festivities ad at the same time show your love for this country. The whole scene is so relaxing and peaceful that you can just sit back and enjoy, forgetting about the troubles of everyday life.";
fDesc[15] = "kids, and of many adults too! It will take you to the South Pole, where penguins live. Can you imagine how these beautiful animals celebrate and party?";
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 = '...';
}
}