function rollOver(imName,over) {
    if (over) { document.images[imName].src = imName + "_rollover.gif" }
         else { document.images[imName].src = imName + "_default.gif" }
}

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

function formHandler1(form){
var URL = document.form.site1.options[document.form.site1.selectedIndex].value;
window.location.href = URL;
}


function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}
image = new StringArray(3)
image[0] = 'http://www.Baseball-Cards.com/images/title_strip.jpg'
image[1] = 'http://www.Baseball-Cards.com/images/title_strip2.jpg'
image[2] = 'http://www.Baseball-Cards.com/images/title_strip3.jpg'

function ranimage() {
  var core = 0
  var currentdate = 0
  var ran = 60/image.length
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/ran)
    return(image[core])
}

function getimage() {
document.write("<img src='" +ranimage()+ "' BORDER='0'>")
}
