var fDesc=new Array();
fDesc[0] = "Help Benny the bumblebee and his friends as they search for the lost colors of their magical island! Break a spell placed by the evil wizard Graycoat, and save the islanders in BumbleBee Jewel, a fun and exciting Match 3 game.
Go on an incredible journey with adorable characters and experience a hilarious story for yourself. Travel to the woods, the jungle, the desert, and even to the bottom of the sea!
Main features:
- Hilarious characters
- Special powerups
- Find the lost colors!";
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 = '';
}
}