var fDesc=new Array();
fDesc[0] = "Jack the fun-loving teenager who is bored of the same repetitive lifestyle is ready for the carnival for experiencing an adventurous journey. Travel with him to witness a new world which offers a promise of all-round entertainment, offering Jack a sense of satisfaction on fulfilling challenging tasks. Play and enjoy the real feel of carnival entertainments.
Features:
- Vivid colors used, which are appealing to the eyes.
- Wide variety of background.
- Mind blowing brain teasers.
- Riddles testing reasoning ability.
- Each and every stage distinct in its own way.
- Provision for applying creativity to give rise to fresh entities.
- Finding hidden objects in a different manner.
- A greatest game experience you never feel before.";
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 = '';
}
}