<!--
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;

var ar = new Array();
ar[0] = "Van Nuys Airport, which today covers 730 acres, opened in 1928 on just 80 acres as the privately owned Metropolitan Airport.";
ar[1] = "In Van Nuys Airport&rsquo;s early years, aviation pioneers like Amelia Earhart and Florence &ldquo;Pancho&rdquo; Barnes set speed flight records at the airport.";
ar[2] = "The first of hundreds of movies, TV shows and commercials with scenes filmed at Van Nuys Airport was Hell&rsquo;s Angels in 1930.";
ar[3] = "During World War II, Hollywood discovered none other than Marilyn Monroe on an aircraft assembly line at Van Nuys Airport.";
ar[4] = "Competitors in the famous Bendix Air Races after World War II staged along the east side of Van Nuys Airport, and then raced across the nation to win the coveted Bendix trophy.";
ar[5] = "The Sherman Way underpass became one of the first of its kind when built in the late 1950s, allowing Van Nuys Airport to lengthen its main runway and send vehicle traffic underneath. ";
ar[6] = "Planes built in the 1960s at an aerospace firm located at Van Nuys Airport transported massive moon rockets to Cape Canaveral in Florida, establishing VNY as a key player in the race to space.";
ar[7] = "Legendary comedian Bob Hope initiated several of his famous USO tours from the former Air National Guard site at Van Nuys Airport.";
ar[8] = "An economic study shows that Van Nuys Airport contributes about $1.3 billion annually to the Southern California economy and supports more than 12,300 jobs.";
ar[9] = "Each year, approximately 10,000 adults and children get a firsthand look at Van Nuys Airport through the airport&rsquo;s award-winning guided tour program.";

var num = 0;

function start() {
  setInterval("update()", 8000);
}

function update() {
  display("banner", ar[num]);
  num++;
  if (num == ar.length) num = 0;
}

function display(id, str) {
  if (NS4) {
    with (document[id].document) {
      open();
      write(str);
      close();
    }
  } else {
    document.all[id].innerHTML = str;
  }
}
// -->