<!--
var img1 = "/images/truck1.jpg"
var img2 = "/images/truck2.jpg"
var img3 = "/images/truck3.jpg"
var img4 = "/images/truck4.jpg"
var img5 = "/images/truck5.jpg"
var img6 = "/images/truck6.jpg"
var img7 = "/images/truck7.jpg"
var img8 = "/images/truck8.jpg"
var img9 = "/images/truck9.jpg"
var img10 = "/images/truck10.jpg"
var img11 = "/images/truck11.jpg"
var img12 = "/images/truck12.jpg"
var img13 = "/images/truck13.jpg"

var randomize = Math.round(Math.random()*13)
if (randomize == 1){
newimg = img1
}else if (randomize ==2){
newimg = img2
}else if (randomize ==3){
newimg = img3
}else if (randomize ==4){
newimg = img4
}else if (randomize ==5){
newimg = img5
}else if (randomize ==6){
newimg = img6
}else if (randomize ==7){
newimg = img7
}else if (randomize ==8){
newimg = img8
}else if (randomize ==9){
newimg = img9
}else if (randomize ==10){
newimg = img10
}else if (randomize ==11){
newimg = img11
}else if (randomize ==12){
newimg = img12
}else if (randomize ==13){
newimg = img13

}else{
newimg = img13
}
document.write('<IMG SRC="'+newimg+'">')
//-->
