var titles = new Array("The Smart Car",
                       "The Smorvette",
                       "The Smaudi A3 AWD",
                       "The Smamborghini",
                       "The Smorsche",
                       "The Smerrari",
                       "The Smustang!");
var photos = new Array("smartcar.jpg",
                       "smorvette.jpg",
                       "smaudi.jpg",
                       "smamborghini.jpg",
                       "smorsche.jpg",
                       "smerrari.jpg",
                       "smustang.gif");
var footers = new Array("We may all be forced to drive these soon.<br>But check out these new choices in the works...",
                        "","","","","...and last, but no least...","");

function init() {

  refDiv("disclaimer").style.visibility = "visible";
  showPhoto(0);
}

function disDone() {
  refDiv("disclaimer").style.visibility = "hidden";
}

function showPhoto(x) {

  refDiv("pTitle").innerHTML = titles[x];
  refDiv("pPhoto").innerHTML = '<img src="' + photos[x] + '">';
  refDiv("pFoot" ).innerHTML = footers[x];

  x = (x == 6)? 0 : x+1;
  v = (x == 0)? "Again" : "Next...";
  refDiv("pButt").innerHTML = '<input type=button value="' + v + '" onClick=showPhoto(' + x + ')>';
}
