<!-- Begin
// Set up the image files to be used.
var theLinks = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theLinks[0] = '<img src="design/images/banner1.jpg" width="786" height="69" alt="Country Welcome" border="0">'
theLinks[1] = '<img src="design/images/banner2.jpg" width="786" height="69" alt="Country Welcome" border="0">'
theLinks[2] = '<img src="design/images/banner3.jpg" width="786" height="69" alt="Country Welcome" border="0">'

// do not edit anything below this line

var j = 0
var p = theLinks.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theLinks[i]
}
var whichLink = Math.round(Math.random()*(p-1));
function showLink(){
document.write(''+theLinks[whichLink]+'');
}

//  End -->

<!--
  function gotoURL(form){
   if (form.nav.options[form.nav.selectedIndex].value == "") return;
   else window.location = form.nav.options[form.nav.selectedIndex].value;
  }
//-->
