var fDesc=new Array(); fDesc[0] = "Noodle is a simple but very entertaining and challenging word game, developed by Xdyne, that challenges us to form nouns from a given word. The game takes place in a circus environment, with many colors, lights, as well as amusing music and sounds, plus a charming parrot as our main opponent. The game basically consists in forming words, more precisely nouns, starting from a given word in the grid. To start creating words, players take turns to pick a letter from the alphabet and place it in any adjacent tile to form nouns with the existing letters in the grid. Players will be receiving one point per every letter used in a noun, so the winner will be the player with the highest score. Noodle has a built-in dictionary that will check the validity of words, and will also give us the chance to add new ones to the list. Noodle has different levels of skill, Beginner, Intermediate and Expert, what makes the game suitable for players of all ages. Apart from choosing from three difficulty levels, we can also set a time limit to the game, disable sounds, or while playing, undo the last action with a right click. Noodle is very easy to play, but trying to beat the parrot is a task that may keep us busy for some time."; 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 = ''; } }