var fDesc=new Array(); fDesc[0] = "Equipped with a garage and a small amount of cash ($750), you buy a used car from the classifieds in a newspaper and embark on a journey to rise through the ranks by winning races against other racers. Using money you earn through races you can modify your car and eventually winning enough races earns you the right to challenge The King for his position.

The player starts off on the garage, where cars and parts may be purchased from the newspaper. New parts that are purchased must be installed by the player by entering the hood of or going under the car and then removing a series of screws to remove parts of the engine and transmission. Then, these parts must be re-installed in order and the bolts replaced, otherwise the car will be undrivable. To install tires, the car must be jacked up. While racing, the car will eventually run out of fuel, which the player must obtain from the gas station.

The player will proceed from the garage to the local diner in order to find some competition to race. Races take place on either a dragstrip (drag race option) or an open country road."; 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 = ''; } }