<!--
//Random rotation of header images plus link back to index
function random_hero(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="images/graphics/hero1.jpg"
  myimages[2]="images/graphics/hero2.jpg"
  myimages[3]="images/graphics/hero3.jpg"

  var ry=Math.floor(Math.random()*myimages.length)

  //add the image alt text string here
  var altText="Triton Transport Ltd is one of the largest heavy haul carriers in British Columbia and is a primary transporter for local equipment dealers. Triton Transport Ltd offers the latest in modular specialized equipment designed for transporting machinery, heavy equipment and over-dimensional loads."

//make sure the image size is correct in the following section
  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" alt="'+altText+'" border=0 width="772" height="163">')
}

  // call with: random_header()
//-->
