
  /*
    This is the array that holds the pages that are used in the 
    website, so the menu and images can be dynamically drawn.
  */
  var a = new Array(6);
  a[0] = 'home';
  a[1] = 'news';
  a[2] = 'profile';
  a[3] = 'clients';
  a[4] = 'reference';
  a[5] = 'contact';

  /*
    This should always be the same length as the pages array
    above, and contains entries for whether the blocks down the 
    right hand side of the page should be the default images or 
    the page specific ones.
    valid values are 'default' and 'pagebased' - anything else will
    cause 'default' to run.
  */
  var imagetype = new Array(6);
  imagetype[0] = 'default';
  imagetype[1] = 'pagebased';
  imagetype[2] = 'pagebased';
  imagetype[3] = 'pagebased';
  imagetype[4] = 'pagebased';
  imagetype[5] = 'pagebased';
