var fDesc=new Array();
fDesc[0] = "Animated Toys is comprised of 26 segments, each containing a toy animated on the computer screen. The toys are activated by the single press of a switch, mouse click, or the keyboard "enter" key.
The toys incorporate cause & effect skills, increasing attention span, visual tracking, and focusing on objects. Animation speeds, background music preferences, prompt images, and audio prompts are saved on a student level. The beauty of this program is that you get 26 switch activated toys that never break.
The program works with switches, a mouse click, a touch window, or the computer keyboard.";
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 = '';
}
}