// JavaScript Document
ImageSelection = new Array(
  "http://cairdmechanical.ca/images/template/random1.gif",
  "http://cairdmechanical.ca/images/template/random2.gif",
  "http://cairdmechanical.ca/images/template/random3.gif",
  "http://cairdmechanical.ca/images/template/random4.gif"
)
function RandomImage() {
  theImage = ImageSelection[Math.floor(Math.random()*ImageSelection.length)]
  return theImage
}
