var fDesc=new Array(); fDesc[0] = "JollyPairs is a pair matching game where the player is presented with a number of face down 'covers'. Each cover may be clicked to reveal the underlying picture. Once a picture has been revealed, the player may then click another cover to try to find the matching picture.

Pictures must be matched in pairs and once all matching pairs have been found the game is over. Unmatched pairs are re-covered and the child must remember the location of the pictures"; 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 = ''; } }