// ==============================================
// This script will randomly switch the image on each page load
// ==============================================

// Set up the image files to be used.
var theImages2 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Remember
// to increment the theImages[x] index!

theImages2[0] = 'images/sports/images  (1).jpg'
theImages2[1] = 'images/sports/images  (2).jpg'
theImages2[2] = 'images/sports/images  (3).jpg'
theImages2[3] = 'images/sports/images  (4).jpg'
theImages2[4] = 'images/sports/images  (5).jpg'
theImages2[5] = 'images/sports/images  (6).jpg'
theImages2[6] = 'images/sports/images  (7).jpg'
theImages2[7] = 'images/sports/images  (8).jpg'
theImages2[8] = 'images/sports/images  (9).jpg'
theImages2[9] = 'images/sports/images  (10).jpg'
theImages2[10] = 'images/sports/images  (11).jpg'
theImages2[11] = 'images/sports/images  (12).jpg'
theImages2[12] = 'images/sports/images  (13).jpg'
theImages2[13] = 'images/sports/images  (14).jpg'
theImages2[14] = 'images/sports/images  (15).jpg'
theImages2[15] = 'images/sports/images  (16).jpg'
theImages2[16] = 'images/sports/images  (17).jpg'
theImages2[17] = 'images/sports/images  (18).jpg'
theImages2[18] = 'images/sports/images  (19).jpg'
theImages2[19] = 'images/sports/images  (20).jpg'
theImages2[20] = 'images/sports/images  (21).jpg'
theImages2[21] = 'images/sports/images  (22).jpg'
theImages2[22] = 'images/sports/images  (23).jpg'
theImages2[23] = 'images/sports/images  (24).jpg'
theImages2[24] = 'images/sports/images  (25).jpg'
theImages2[25] = 'images/sports/images  (26).jpg'
theImages2[26] = 'images/sports/images  (27).jpg'
theImages2[27] = 'images/sports/images  (28).jpg'
theImages2[28] = 'images/sports/images  (29).jpg'
theImages2[29] = 'images/sports/images  (29).jpg'
theImages2[30] = 'images/sports/images  (31).jpg'
theImages2[31] = 'images/sports/images  (32).jpg'
theImages2[32] = 'images/sports/images  (33).jpg'
theImages2[33] = 'images/sports/images  (34).jpg'
theImages2[34] = 'images/sports/images  (35).jpg'
theImages2[35] = 'images/sports/images  (36).jpg'
theImages2[36] = 'images/sports/images  (37).jpg'
theImages2[37] = 'images/sports/images  (38).jpg'
theImages2[38] = 'images/sports/images  (39).jpg'
theImages2[39] = 'images/sports/images  (40).jpg'
theImages2[40] = 'images/sports/images  (41).jpg'
theImages2[41] = 'images/sports/images  (42).jpg'
theImages2[42] = 'images/sports/images  (43).jpg'
theImages2[43] = 'images/sports/images  (44).jpg'
theImages2[44] = 'images/sports/images  (45).jpg'
theImages2[45] = 'images/sports/images  (46).jpg'
theImages2[46] = 'images/sports/images  (47).jpg'
theImages2[47] = 'images/sports/images  (48).jpg'
theImages2[48] = 'images/sports/images  (49).jpg'
theImages2[49] = 'images/sports/images  (50).jpg'
theImages2[50] = 'images/sports/images  (51).jpg'
theImages2[51] = 'images/sports/images  (52).jpg'
theImages2[52] = 'images/sports/images  (53).jpg'
theImages2[53] = 'images/sports/images  (54).jpg'
theImages2[54] = 'images/sports/images  (55).jpg'
theImages2[55] = 'images/sports/images  (56).jpg'
theImages2[56] = 'images/sports/images  (57).jpg'
theImages2[57] = 'images/sports/images  (58).jpg'
theImages2[58] = 'images/sports/images  (59).jpg'
theImages2[59] = 'images/sports/images  (60).jpg'
theImages2[60] = 'images/sports/images  (61).jpg'
theImages2[61] = 'images/sports/images  (62).jpg'
theImages2[62] = 'images/sports/images  (63).jpg'
theImages2[63] = 'images/sports/images  (64).jpg'
theImages2[64] = 'images/sports/images  (65).jpg'
theImages2[65] = 'images/sports/images  (66).jpg'
theImages2[66] = 'images/sports/images  (67).jpg'
theImages2[67] = 'images/sports/images  (68).jpg'
theImages2[68] = 'images/sports/images  (69).jpg'
theImages2[69] = 'images/sports/images  (70).jpg'
theImages2[70] = 'images/sports/images  (71).jpg'
theImages2[71] = 'images/sports/images  (72).jpg'
theImages2[72] = 'images/sports/images  (73).jpg'
theImages2[73] = 'images/sports/images  (74).jpg'
theImages2[74] = 'images/sports/images  (75).jpg'
theImages2[75] = 'images/sports/images  (76).jpg'
//theImages2[76] = 'images/sports/images (77).jpg'
//theImages2[77] = 'images/sports/images (78).jpg'
//theImages2[78] = 'images/sports/images (79).jpg'
//theImages2[79] = 'images/sports/images (80).jpg'
//theImages2[80] = 'images/sports/images (81).jpg'
//theImages2[81] = 'images/sports/images (82).jpg'
//theImages2[82] = 'images/sports/images (83).jpg'
//theImages2[83] = 'images/sports/images (41).jpg'
//theImages2[84] = 'images/sports/images (83).jpg'




// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages2.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage2 = Math.round(Math.random()*(p-1));
function showImage22(){
document.write('<img style="border-color:#000000; border-style:solid; border-width:2px" border="1" width="229" src="'+theImages2[whichImage2]+'">');
}

//<img src="images/spc2x1.gif" />-->

