var fDesc=new Array();
fDesc[0] = "Oh my God! These have to be the largest rats on the planet!
Hurry up, take you broom and punch away those disgusting creatures. Don’t get afraid of their red gloomy eyes! Those sharp teeth won’t do you any harm either if you use all your skills to eliminate those rats. Those rats are not just annoying, ugly and stinky, they can jump too and touching them may catch you a nasty infection.
That is why your home needs you to save it from the Big Rats Attack and keep it clean from spiders as well. Big Rats Attack is a fast free kids game for excellent entertainment and hours of fun.";
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 = '';
}
}