var fDesc=new Array();
fDesc[0] = "The evil Victor Vile has stolen several classic stories from the Halls of Fiction. Solve pictographic puzzles as you travel through classic stories such as Beauty & the Beast, Swan Lake, Aladdin, and more in order to fix the fiction. It's up to you to solve the puzzles and save the stories in World Mosaics 8: Fiction Fixers.
Featured 110 story mode puzzles, 110 additional color puzzles, test your skill with 3-star challenges, Over 10 hours of puzzling gameplay!";
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 = '';
}
}