var fDesc=new Array();
fDesc[0] = "Bleed is an action-platformer focused on stylish, acrobatic dodging and fluid, challenging gameplay.
Main Features:
-A unique control scheme that allows you to slow time, weave through hails of bullets and clear roomfulls of enemies without breaking a sweat.
-Seven levels packed with multiple set-pieces and bosses.
-A large arsenal including a flamethrower, remote mines and a bullet-reflecting sword.
-Difficulty levels ranging from laughably easy to maddeningly difficult.
-Local co-op (requires at least one controller).
-Three unlockable characters that put their own twists on the gameplay mechanics.
-Unlock Arcade Mode to try and survive the entire game on one life.
-Unlock Challenge Mode to select and battle up to three bosses at once.";
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 = '';
}
}