var fDesc=new Array();
fDesc[0] = "Nanny Mania is back with a brand new adventure. The sequel to the number one hit puts you in the middle of a celebrity family in need of a super nanny! Can you bring our celebrity star back from the brink of destruction? Why not give it a try? Nanny goes to Hollywood brings you into the lifestyles of the rich and famous. In Hollywood, being a stay at home mom is a lot of work. Have you got the skills to take care of the house, the kids, and the egos all while keeping the paparazzi at bay? Why not give it a try?";
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 = '';
}
}