
// Contents for Header
// Type the name of the picture file in double quotes, as shown

var photo1="Auction_Photo.JPG";
var photo2="camera photos 069w.jpg";
var photo3="DSC01915w.jpg";
var photo4="artwork.jpg";

var imgSource="<img src=\"http://www.peopleschurchpreschool.com/images/";
var imgClose="\" "
var imgAttributes=" height=\"125\" alt=\"Peoples Church Preschool\">";

  document.write(imgSource + photo1 + imgClose + imgAttributes);
  document.write("&nbsp;")
  document.write(imgSource + photo2 + imgClose + imgAttributes);
  document.write("&nbsp;")
  document.write(imgSource + photo3 + imgClose + imgAttributes);
  document.write("&nbsp;")
  document.write(imgSource + photo4 + imgClose + imgAttributes);




