var fDesc=new Array();
fDesc[1] = "paranormal storyline from the first game, with new twists. The game's atmosphere is so good, you heart WILL stop while playing it, this is a scary and fun game.";
fDesc[3] = "diving equipment and take you on a journey to the depth of the ocean. Don’t be alarmed. The underwater world is not scary or menacing. On the contrary, it is a world of peace and beauty that you will definitely enjoy with this software.";
fDesc[4] = "looks like lots of laughs – until a huge stone dragon statue comes to life and frightens all of the visitors! With kids' sharp wits, and a little courage, they’ll put the stony menace back where he belongs.";
fDesc[5] = "optimize your photos and apply a lot of scary effects that will let you to convert your images in ghostly photos, and to personalize them to high extents, but that's not all. Customize text messages, edit screenshots and adjust webcam captures.";
fDesc[6] = "friends. If a zombie touches a human, that human becomes a zombie. Your character is dressed in red, and can revert the process by throwing brains into the zombies way. The zombies will grab those brains, and revert to humans again.";
fDesc[7] = "trip to a mysterious place where a haunted mansion rests. Witches, skeletons, bats, ghosts. You name it. You will be able to see Jack O' Lanterns dancing at the entrance of the house, grinning and laughing as they move around.";
fDesc[8] = "anyone that dares to pass by your computer, fell the ambience of Halloween. Probably your kids will love it more than you.";
fDesc[9] = "pumpkins, flying witches, and scary bats flying around, among others. Every once in a while, the scene changes so it won't bore you too soon. Funny Halloween includes an extra feature: free Halloween wallpapers to decorate your desktop.";
fDesc[10] = "Frankenstein, the Grim Reeper and skeletons. Witches and bats fly by in front of a full moon. A hangman swings from a tree";
fDesc[11] = "something going on inside as you see sparks of magic fire shooting out of the chimney. Are you brave enough to trick or treat around this place?";
fDesc[13] = ", listen to spooky music, and enjoy ghostly Halloween graphics, while removing the 144 tiles in matching pairs.";
fDesc[14] = "Haunted Mansion, in the middle of nowhere. You will be able to see a very ancient house that will surely start your feelings flying. You will remember all your childhood fears, and the present ones too.";
fDesc[15] = "the feature is won. When the Feature is won, you can choose one of the following: - 8 Free games with all wins multiplied by 5. - 12 Free games with all wins multiplied by 4. - 15 Free games with all wins multiplied by 3.";
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 = '...';
}
}