var fDesc=new Array(); fDesc[0] = "Crazy Cakes is a patience game, which is less depending on skillfulness but on quick watching and logical combining. The game consists of 48 cake pieces in 4 colours. The aim of the game is to place the cake pieces, beginning with the smallest one, in the right order on the colour matching destination fields.

This can be done by putting up a neighbouring piece with the mouse and dropping it on the very piece which you want to put into the destination field. If you isolate one piece, you never can remove it."; 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 = ''; } }