var fDesc=new Array(); fDesc[0] = "You work in a bakery and your job is to take customers' orders, bake cakes, decorate them, and then serve the customers, the thing is that you should do it very quickly. Each new level means attending more clients and thus more complicated but the more challenging the game becomes. Along the way you'll make upgrades to your equipment and encounter new characters that present new challenges. For example, Cupid shows up in February and is not a very patient client.

The real difficulty of the game comes when you have more customers ordering cakes. You must be as quick as a flash to make all your orders in time otherwise clients can get angry and leave. It's easy to click on the wrong icing or decoration, or forget which cake goes with which. As you complete levels you gain money and thus you will have the possibility of buying the right equipment like microwaves, more ovens etc, which can make your baking process easier and increase the amount of money you make.

Rather a simple game, the players can become bored soon."; 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 = ''; } }