var fDesc=new Array();
fDesc[0] = "Fetch the king Living Water in this tower defense game with a time travel twist!
When a bolt of lightning sends you back to the days of King Arthur, you trade in your farmer's hat for a suit of armor and set off on a quest to find the fountain of youth - or at least to make it back to the present by supper.
New Yankee in King Arthur's Court delivers the tactical thrills of the best tower defense games and the ease-of-play casual gamers enjoy.";
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 = '';
}
}