var fDesc=new Array();
fDesc[1] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
fDesc[2] = "choosing your desired image and name. Then, you can choose to play some of the five games featured: Ride The Tide, Hold“Em Poker, 21 Blackjack, Video Poker or Slots.";
fDesc[3] = "will keep you entertained. Enjoy this creative game while you put fruits together, built tikis and rockets, and shoot to different targets.";
fDesc[4] = "submerging to the coral reef below. With each meter that slips by, it becomes quieter and more peaceful around you. The mysterious kingdom of the sea uncovers all its beauty, only to you. Nothing troubles you now. Soft light filters through the water, tinting it with the various shades of blue and green. Fantastic corals are wondrously shaped and colored. It's almost like you are on another planet. Algae are gently swaying with the current. Peaceful, easy feelings fill your body. Air bubbles slowly rise to the water surface. Tropical fish inhabit the coral reef. They appear in every imaginable color, with fantastic shapes. They are swimming everywhere. Some are far from you, others very close. Fish movements are so realistic that it makes you think you are observing real living sea creatures. They swim and drift. Corals and plants bend and sway in the tide, all realistically reflecting...";
fDesc[5] = "to discover hidden treasures, or simply to enjoy the views and feelings of the underwater environment. Delight yourself as you watch beautiful tropical fishes swimming around you. They are so realistic and so close to you, that you will feel the urge to reach out and touch them.";
fDesc[6] = "you on a tropical island where you can really relax watching how the sky changes colors as the time of the sunset approaches. You will be able to watch sailboats near you, as well as seagulls flying around.";
fDesc[7] = "willing to play it. The game is very easy to be played, you will be able to solve every puzzle by using your mouse. It can be played for people of all ages. It also has got nice mini games that will keep you playing for hours.";
fDesc[8] = "underwater adventure of discovery. You will be able to see beautiful coral heads and sponges, as well as a vertical reef deep in the ocean. Or even an underwater arch made of coral, where different kinds of fish will swim by.";
fDesc[9] = "and sound, clock, and so on. The unregistered version only works during one minute; if you want the full version, you must purchase a license.";
fDesc[10] = "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[11] = "satisfy all their needs. If we serve right a customer, he will give us a good tip. New buildings are unlocked when we reach the proper amount of money. When a new building is unlocked we can place it in any of the circled locations.";
fDesc[12] = "control in this game is Megan, a young women which bought a house near the sea, but the house is not in very good conditions, so she needs your help to take pictures under the sea and find some antiques and then sale them in order to collect some money.";
fDesc[13] = "cool-looking clock showing the current time. You can adjust many of the screensaver's settings such as the sound, the number of fish you want to display (up to 30), and so on. If you love fish, this is the right screensaver for you.";
fDesc[14] = "journey to a place very similar to what Paradise should be. You will visit places unspoiled by human hand, and where nothing will remind you anything about your daily troubles.";
fDesc[15] = "and rest. Realistic graphic is being accompanied with natural sound of the sea and screaming birds. Animated water-waves and flying seagulls are looking like a true-life movie.";
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 = '...';
}
}