var fDesc=new Array();
fDesc[0] = "Join the whole gang as they soak up rays and cool off in the sun-kissed waters of Huru Beach. Your main goal is to help Lindsey earn enough money to enter her volleyball team in a school tournament by catering to her friends as they visit the coast.
Main features:
- 50 sun-kissed levels
- Eight kinds of clients to serve
- 15 buildings to construct
- 50 upgrades to purchase
- Seven mini-games to win!";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}