var fDesc=new Array();
fDesc[0] = "The monkey is back, and he’s brought a tuxedo!
With 8 different game features and 25 or 50 paylines, it’s Monkey Money 2 HD!
Can you accomplish all 45 special achievements?
Try it now and see…
During normal play the Monkey acts as a wildcard and substitutes for all symbols except scattered coins symbols.
Scattered coin symbols pay anywhere in the window.";
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 = '';
}
}