var fDesc=new Array();
fDesc[1] = "challenge!";
fDesc[2] = "picking items from different locations, following a list provided by the game. You have to look the scenes very carefully, trying to find the items on the list. When you see an item, just click on it to update the list. You can try the game for 60 minutes before buying.";
fDesc[3] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[4] = "four wedding planners in a TV-show, organizing luxurious weddings worldwide. The first wedding to plan is at Niagara, so you’ll be flying within the next three hours! Try this game for 60 minutes before you buy the licensed version.";
fDesc[5] = "FaceMorpher is the first fully automated image morphing software on the market. No skills required! Simply load two images and play!";
fDesc[6] = "bride and groom with the wedding location, the honeymoon, the reception and dinner. However, the bridal couple and the guests don't always make it easy.";
fDesc[7] = "Game. Just to give an idea, take into account that the game has seventy two levels to play. The whole game is designed to make you feel as you were inside a Disneyland motion picture, with the fable characters, the touching music and the fantastic adventures to live.";
fDesc[8] = "It is based on the rashi-based calculations, according to the Vedic Astrology that focuses in the study of the specifics of the different planets relative to the Zodiac Signs and the possible influences of the Planets on the life of an individual.";
fDesc[9] = "will allow you to sit back and really relax from your daily routine. Picture yourself in Paradise! All kinds of tropical birds fly around the place, while the gentle waves splash against the shore.";
fDesc[10] = "to make all the preparations step by step, following simple instructions. The main feature of this program is that the interface is designed in such a way that you just can’t do something wrong.";
fDesc[11] = "mate. Bride.Ru Informer will let you enter the characteristics of a person you would like to find - and will search for that person on the corresponding site. The program has many advanced searching options, for example: by zodiac sign, country and spoken language.";
fDesc[12] = "done for their wedding day, as the program helps them to schedule and arrange all these tasks according to their importance and urgency. There is no more need to worry about your wedding party and the duties you should attend to.";
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 = '...';
}
}