var fDesc=new Array(); fDesc[0] = "Control bees to collect honey, move the flowers to let no less than 3 same flowers in a line. The flowers will disappear, and produce honey. when honey fill the bottle, the mission is completed. Some bombs may be produced when you remove flower more than 3 at one time. Detonating the bombs will remove more flowers. Every level has a different layout, different honey positions, and maybe has some chains to increase difficulty, it will be a new challenge. Apiary Quest simulate as Bejeweled, but has more new features,like bombs."; 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 = ''; } }