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] = "music and transitions. Share this exciting day on a screen using only a common DVD player in the comfort of your home. Use your CD or DVD burner to make high quality photo slide show DVD disc in less than half hour.";
fDesc[5] = "allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[6] = "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[7] = "to win the contest. Make sure to meet all the requests of the brides and grooms when it comes to decoration and food.";
fDesc[8] = "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[9] = "videos looks more professional, just put your videos or pics & relive that moments again whether it be your big wedding day or engagements. Just create a new video with some lovely special effects like sweeping hearts, roses & love-themed overlays, and gift it to loved ones.";
fDesc[10] = "files. The program has got a big number of functions and options that will make your slide shows very attractive to whoever may watch them.";
fDesc[11] = "“missions”. You’ll be welcomed by Mr. Bones who owns a cat in love with his neighbor’s kitty. Now, those cats want to get married but since they are cats they don’t have any money! So the game invites you to help Mr. Bones and the cute cats to collect money for the wedding.";
fDesc[12] = ", transitions, DVD menus. It can quickly and easily produce amazing wedding photo album DVD video disc playable on TV.";
fDesc[13] = "all of fantasies come true by planning every aspect of your wedding such as the groom, cake, flowers, presents, etc. The first and more important thing to do is select the perfect groom. Then, you also select his tuxedo, his groomsmen, and of course your bridesmaids.";
fDesc[14] = "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[15] = "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 = '...';
}
}