var fDesc=new Array(); fDesc[0] = "Star Fruit Mahjong is a fruit themed Mahjongg matching puzzle game with a star fruit shaped layout. The tiles images are fruit icons instead of the typical Chinese icons. You can play in full screen mode or create your own puzzle layouts and play them. Earn coins by completing levels, and use them to buy hints or shuffles in the game. Match the tiles to remove them from the game, win by removing all the game tiles from play.

If you're not familiar with the puzzle game Mahjongg, it's a simple matching puzzle games where you remove tiles from the game board by matching them up with a second identical tile that is not blocked in by the left and right by other tiles. The tiles can also not be selected if they are partially or completely covered from above by another tile."; 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 = ''; } }