
function Photo(src) {
  this.Src = src;
  this.Write = writePhoto;
}

function writePhoto() {
  document.write("<img src='" + this.Src + "'>");
}

photo = new Array();
number = 0;
photo[number++] = new Photo("img/professionalE.jpg");
increment = Math.floor(Math.random() * number); 