// Create new main array.
var infoText = new Array()

// Stuff main array entries with objects.
infoText[0] = new Array("", "");
infoText[1] = new Array("Vinyl Graphics", "Custom die-cut decals and logos for any smooth surface");
infoText[2] = new Array("Large Format", "Full color prints for indoor/outdoor use, trade show events, and vehicle wraps");
infoText[3] = new Array("Photo Prints", "Photographic prints, banners and posters for weddings, celebrations, graduations, and more");
infoText[4] = new Array("Vinyl Banners", "Durable indoor/outdoor promotion banners for any event");
infoText[5] = new Array("Signs", "High resolution digital graphics for constructing your own signage");
infoText[6] = new Array("PC Case Mods", "High-end case graphics and mods for presentations, trade show events, and personal PCs");
infoText[7] = new Array("Window Graphics", "Custom window graphics for storefronts, vehicles, promotions, and more");
infoText[8] = new Array("Vehicle Graphics", "Vinyl graphics or photo prints, car wraps, and complete graphic design packages");
infoText[9] = new Array("Boat Graphics", "Graphics packages, transom names, registration numbers, and much more");
infoText[10] = new Array("Magnetic Signs", "Strong and durable magnetic signage for your company vehicle");

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function showInfo(stuff) {
  document.getElementById("title").childNodes[0].nodeValue = infoText[stuff][0];
  document.getElementById("desc").childNodes[0].nodeValue = infoText[stuff][1];
  // - note that for this to work, the div must already have a child node.
  // - Otherwise, you'll get an error.
}
