var fDesc=new Array();
fDesc[0] = "SwitchIt! Farm Extra has been designed to develop and demonstrate understanding of cause and effect through pressing a switch (or other input device) to build a scene.
SwitchIt! Farm Extra can be used in 3 different ways:
- Event Sequences: 12 little animations each based upon farm animals and rural life. Each sequence has 5 steps, carefully chosen to maximise speaking and listening.
- Picture Building: build pictures and see them animate, or use the one-step option for basic cause and effect.
- Flash Cards: flip through a selection of large pictures that relate to the theme.";
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 = '';
}
}