var fDesc=new Array();
fDesc[0] = "Heidi's back for more fast-paced fun in Restaurant Rush Deluxe, the eagerly anticipated sequel to Burger Rush! Help Heidi prove that she's more than just a 'Burger Chef' by whipping up more than 50 recipes in restaurants around the world. Swap and slide a variety of ingredients to make groups of three or more and fill your customers' orders. Restaurant Rush Deluxe is full of mouth-watering fun!
Features
* 2 game modes
* all-new ingredients and recipes
* multiple endings
* unique bonus challenges";
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 = '';
}
}