var fDesc=new Array();
fDesc[0] = "Hang around a bus stop in any large city and you never know what will happen. That's the premise behind «Bus Stop 2». With a cityscape in the background, various cartoon-like people and animals walk down a sidewalk.
Of course, this isn´t everything that happens. It can take weeks, or even months, until you´ve seen everything.
The most important features:
-Interaction: You can click the figures and many will show a reaction.
-You can enable or disable all the sound effects or disable individual noises. Assign particular sounds to the people, which are then played when you click them.
-You decide when the sun should rise or set. Decide yourself when the winter should begin and how long it should last.
- More backgrounds can be installed as required.
-You can stick your own pictures or texts to the advertising board";
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 = '';
}
}