var fDesc=new Array();
fDesc[0] = "It's a time management game with a safari theme.
Katy and Bob have arrived home after their last adventure, made up with their dad and finally started making themselves useful. One wonderful morning a letter arrived to the family mansion from their friends on the island. In it contained an offer to open a chain of cafes in the local Safari Park. After a little deliberation, the whole family set off at once to the island to strike it rich.
Features:
- 3 colorful locations and 60 exciting levels
- More than 10 fun characters
- Bonus tasks and tons of trophies
- Upgradable team members";
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 = '';
}
}