var fDesc=new Array();
fDesc[0] = "Stroll along with Joe, Blue, and Mailbox, searching the neighborhood for lots of colorful items. Kids ages 3-6 can use their problem-solving and memory skills to help Joe follow the clues and find eggs, paints, a toy box, strawberries, and more. Find fun and learning in the Blue's Clues 3-D world!
Joe's 3-D Scavenger Hunt features include :
- Problem-solving
- Hand-eye coordination
- Memory";
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 = '';
}
}