var whichSponsor1 = 0;
var rannum = 0;
var imglength = 0;
var theSponsor = new Array()
  theSponsor[0] = '/img/sponsors/beersmith.gif'
  theSponsor[1] = '/img/sponsors/parkway.jpg'
  theSponsor[2] = '/img/sponsors/yakimacraft.gif'
  theSponsor[3] = '/img/sponsors/white_labs.jpg'
  theSponsor[4] = '/img/sponsors/m_t_head_brewing.gif'
  theSponsor[5] = '/img/sponsors/yourhomebrew.gif'
//  theSponsor[6] = '/img/sponsors/07.jpg'
//  theSponsor[7] = '/img/sponsors/08.jpg'
//  theSponsor[8] = '/img/sponsors/09.jpg'
//  theSponsor[9] = '/img/sponsors/10.jpg'
//  theSponsor[10] = '/img/sponsors/11.jpg'
//  theSponsor[11] = '/img/sponsors/12.jpg'


rannum = Math.random();
imglength = theSponsor.length;

var rannum1 = Math.floor(Math.random() * imglength)

whichSponsor1 = rannum1;


function showSponsor1(){
  document.write('<a href="/sponsors.htm" style=font-size:11.0pt;font-family:Georgia;color:#990000;font-weight:bold;text-decoration:none;>HoPS Sponsored by<br><img src="'+theSponsor[whichSponsor1]+'" border="0"></a>');
}

