// JavaScript Document

<!-- BEGIN IMAGE ROTATE SCRIPT -->
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.


theImages[1] = '<embed src="http://www.averittexpress.com/images/milwaukeebannerad3.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="130" height="148"></embed>'
//theImages[2] = '<a href="http://www.averittexpress.com/aboutus/canadaexpansion.htm"><img src="http://www.averittexpress.com/images/Icon_Canada.gif" width="130" height="148" border="0" /></a>'
//theImages[3] = '<a href="http://www.averittexpress.com/myaveritt.htm"><img src="http://www.averittexpress.com/images/Icon_Myaveritt.gif" width="130" height="148" border="0" /></a>'
//theImages[4] = '<a href="http://www.averittexpress.com/aboutus/dallas.htm"><img src="http://www.averittexpress.com/images/Icon_Dallas.gif" width="130" height="148" border="0" /></a>'
//theImages[0] = '<a href="http://www.averittexpress.com/aboutus/improvetransit.htm"><img src="http://www.averittexpress.com/images/icon_improve.gif" width="130" height="148" border="0" /></a>'
//theImages[1] = '<a href="http://www.averittexpress.com/services/portside.htm"><img src="http://www.averittexpress.com/images/icon_portside.gif" width="130" height="148" border="0" /></a>'
//theImages[2] = '<a href="http://www.averittexpress.com/services/timecritical.htm"><img src="http://www.averittexpress.com/images/icon_timecritical.gif" width="130" height="148" border="0" /></a>'
//theImages[3] = '<a href="http://www.averittexpress.com/services/fareastservice.htm"><img src="http://www.averittexpress.com/images/icon_far_east.gif" width="130" height="148" border="0" /></a>'
//theImages[4] = '<a href="http://my.averittexpress.com/pubLinks.jsp?go=eNewsRegister1.jsp"><img src="http://www.averittexpress.com/images/icon_interface.gif" width="130" height="148" border="0" /></a>'

//theImages[0] = '<a href="http://www.averittexpress.com/aboutus/timeline.htm"><img src="http://www.averittexpress.com/images/icon_Averitt35th.gif" width="130" height="130" border="0" /></a>'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write(theImages[whichImage]);
}
/* If a user presses "enter"/"return", submit the form. */
function filterKeys(event, formObj){
  var code = null;
  if (document.all) {
    code = event.keyCode;
  }
  else {
    code = event.which;
  }
  
  if (code == 13) {
	  doSubmit(formObj);
	}
}
//  End -->