// main image changer
function change()
{
number = Math.floor(Math.random()*8)
if (number==0)
document.write('<img src="graphics/hall-of-famers-Brummer.jpg" alt="" width="161" height="199" border="0">')

if (number==1)
document.write('<img src="graphics/hall-of-famers-Lanier.jpg" alt="" width="161" height="199" border="0">')

if (number==2)
document.write('<img src="graphics/hall-of-famers-Perreault.jpg" alt="" width="161" height="199" border="0">')

if (number==3)
document.write('<img src="graphics/hall-of-famers-Spahn.jpg" alt="" width="161" height="199" border="0">')

if (number==4)
document.write('<img src="graphics/hall-of-famers-Thomas.jpg" alt="" width="161" height="199" border="0">')

if (number==5)
document.write('<img src="graphics/hall-of-famers-Kemp.jpg" alt="" width="161" height="199" border="0">')

if (number==6)
document.write('<img src="graphics/hall-of-famers-Smith.jpg" alt="" width="161" height="199" border="0">')

if (number==7)
document.write('<img src="graphics/hall-of-famers-Jordan.jpg" alt="" width="161" height="199" border="0">')

}
