// Advanced Random Images Start

  var i,image= new Array()
  image[image.length]='<img src="images/projects/house1.jpg" alt="D.J. Hewitt Building Projects" width="169" height="91" border="0" />';
  image[image.length]='<img src="images/projects/house2.jpg" alt="D.J. Hewitt Building Projects" width="169" height="91" border="0" />';
  image[image.length]='<img src="images/projects/house3.jpg" alt="D.J. Hewitt Building Projects" width="169" height="91" border="0" />';
  i=parseInt(Math.random()*image.length);
  i=(isNaN(i))?0:i;
    document.write(image[i]);


// Advanced Random Images End