var fDesc=new Array(); fDesc[0] = "Travel back to the age of magic...the age of alchemy! Merlin’s new assistant wanted to make his job a little easier and decided to cast a spell to get the ingredients he needed. Unfortunately, the charm backfired and now the ingredients just keep coming and coming! Until everything can be straightened out, it's up to you to deal with this enchanted emergency.

If you can arrange identical magic potions in groups of 3 or more you'll stop them from overflowing the laboratory.

But it will get harder and harder as more special potions start appearing. It's definitely going to take some pretty quick thinking to clean up this magical mess!"; 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 = ''; } }