var fDesc=new Array(); fDesc[0] = "Chinese Fan Coffee Mahjong is a coffee themed Mahjongg matching puzzle game with a Chinese Fan shaped layout. The tiles images are coffee related instead of the typical Chinese icons. Match the tiles to remove them from the game. 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.

If you're unfamiliar with Mahjongg, it's a simple matching game where matching two of the same tiles removes them from the game. You can only select tiles for removal if they do not have a tile partially covering them from the top, and the tile is not blocked to both the left and the right by another tile. In this version of the game, I dim the tiles that you can not currently select to make it a little easier to pick them out. To remove the two tiles, click the first tile to highlight it, then click the second tile, and if both have the same image on their face, both tiles will be removed from play."; 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 = ''; } }