var fDesc=new Array();
fDesc[0] = "In the dark of night, an elusive figure breaks in to the royal menagerie and steals four magic animals, your childhood companions and dearest friends. It is up to you to save them. Take the journey to discover more about the Dark Minotaur who threatens the magical world. Can you save them in time?
This is a special Collector's Edition release full of exclusive extras you won’t find in the standard version.
The Collector’s Edition includes:
Bonus gameplay
Downloadable music tracks
Stunning wallpapers and screensaver
An integrated Strategy Guide";
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 = '';
}
}