<!--
//Random ration of hero images plus link to its page
function random_project(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="images/graphics/featureProject1.jpg"
  myimages[2]="images/graphics/featureProject2.jpg"
  myimages[3]="images/graphics/featureProject3.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="projects.html"
  imagelinks[2]="projects.html"
  imagelinks[3]="projects.html"

  var ry=Math.floor(Math.random()*myimages.length)
  
  //add the image alt text string here
  var altText="Triton Transport’s broad range of services, coupled with its excellent safety record make the company a leader in the industry."

//make sure the image size is correct in the following section
  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" alt="'+altText+'" border=0 width="296" height="148"></a>')
}

  //call with: random_imglink()
//-->