var fDesc=new Array();
fDesc[0] = "JellyVolley is a physically based game in which two blobs of jelly compete against each other in a fierce game of beach volley.
JellyVolley has a number features which are physically simulated:
-Blobs and ball are simulated using on a pressure based model
-The net is simulated using a spring mass system
-The sand is simulated using a simple particle system
-Clouds are simulated using computational fluid dynamics
- You can interact with the clouds using the ball";
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 = '';
}
}