var fDesc=new Array(); fDesc[0] = "Highly addictive, yet very relaxing logical game for all ages. Your task is to arrange same color balls in a line by moving one ball at a time. When 4 or more balls are arranged in a line those balls magically disappear and your score will increase. You will also get multi color balls to help you to match them with more than one color.

Sounds easy? But whenever you move one ball, three new balls are added, making it difficult for you to keep the board clean. Whenever you clear the balls in consecutive moves scores are multiplied. So you will have to think and plan properly to score more points When the board is filled with balls, you loose the game."; 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 = ''; } }