
// This script was supplied free by Hypergurl 
// http://www.hypergurl.com 
<!-- 
// JavaScript to interpolate random images into a page. 
var ic = 26; // Number of alternative images 
var xoxo = new Array(ic); // Array to hold filenames 

xoxo[0] = "/wp-content/themes/footballseason/footballseason/img/header1.jpg"; 
xoxo[1] = "/wp-content/themes/footballseason/footballseason/img/header2.jpg"; 
xoxo[2] = "/wp-content/themes/footballseason/footballseason/img/header3.jpg"; 
xoxo[3] = "/wp-content/themes/footballseason/footballseason/img/header4.jpg"; 
xoxo[4] = "/wp-content/themes/footballseason/footballseason/img/header5.jpg"; 
xoxo[5] = "/wp-content/themes/footballseason/footballseason/img/header6.jpg"; 
xoxo[6] = "/wp-content/themes/footballseason/footballseason/img/header7.jpg"; 
xoxo[7] = "/wp-content/themes/footballseason/footballseason/img/header8.jpg"; 
xoxo[8] = "/wp-content/themes/footballseason/footballseason/img/header9.jpg"; 
xoxo[9] = "/wp-content/themes/footballseason/footballseason/img/header10.jpg"; 
xoxo[10] = "/wp-content/themes/footballseason/footballseason/img/header11.jpg";
xoxo[11] = "/wp-content/themes/footballseason/footballseason/img/header12.jpg";
xoxo[12] = "/wp-content/themes/footballseason/footballseason/img/header13.jpg";
xoxo[13] = "/wp-content/themes/footballseason/footballseason/img/header14.jpg";
xoxo[14] = "/wp-content/themes/footballseason/footballseason/img/header15.jpg";
xoxo[15] = "/wp-content/themes/footballseason/footballseason/img/header16.jpg";
xoxo[16] = "/wp-content/themes/footballseason/footballseason/img/header17.jpg";
xoxo[17] = "/wp-content/themes/footballseason/footballseason/img/header18.jpg";
xoxo[18] = "/wp-content/themes/footballseason/footballseason/img/header19.jpg";
xoxo[19] = "/wp-content/themes/footballseason/footballseason/img/header20.jpg";
xoxo[20] = "/wp-content/themes/footballseason/footballseason/img/header21.jpg";
xoxo[21] = "/wp-content/themes/footballseason/footballseason/img/header22.jpg";
xoxo[22] = "/wp-content/themes/footballseason/footballseason/img/header23.jpg";
xoxo[23] = "/wp-content/themes/footballseason/footballseason/img/header24.jpg";
xoxo[24] = "/wp-content/themes/footballseason/footballseason/img/header25.jpg";
xoxo[25] = "/wp-content/themes/footballseason/footballseason/img/header26.jpg";






function pickRandom(range) { 
if (Math.random) 
return Math.round(Math.random() * (range-1)); 
else { 
var now = new Date(); 
return (now.getTime() / 1000) % range; 
} 
} 
// Write out an IMG tag, using a randomly-chosen image name. 
var choice = pickRandom(ic); 
// --> 

