//1) Specify content(s) to display and rotate
//   You can specify multiple "sets", each displayed in diff. areas of your page

var content=new Array() //set 1
content[0]='<img src="/sponsors/2011/00.gif" border="0" width="170" height="150"></a>'
content[1]='<img src="/sponsors/2011/01.gif" border="0" width="170" height="150"></a>'
content[2]='<img src="/sponsors/2011/02.gif" border="0" width="170" height="150"></a>'
content[3]='<img src="/sponsors/2011/03.gif" border="0" width="170" height="150"></a>'
content[4]='<img src="/sponsors/2011/04.gif" border="0" width="170" height="150"></a>'
content[5]='<img src="/sponsors/2011/05.gif" border="0" width="170" height="150"></a>'
content[6]='<img src="/sponsors/2011/06.gif" border="0" width="170" height="150"></a>'
content[7]='<img src="/sponsors/2011/07.gif" border="0" width="170" height="150"></a>'
content[8]='<img src="/sponsors/2011/08.gif" border="0" width="170" height="150"></a>'
content[9]='<img src="/sponsors/2011/09.gif" border="0" width="170" height="150"></a>'
content[10]='<img src="/sponsors/2011/10.gif" border="0" width="170" height="150"></a>'
content[11]='<img src="/sponsors/2011/11.gif" border="0" width="170" height="150"></a>'
content[12]='<img src="/sponsors/2011/12.gif" border="0" width="170" height="150"></a>'
content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
content[14]='<img src="/sponsors/2011/14.gif" border="0" width="170" height="150"></a>'
content[15]='<img src="/sponsors/2011/15.gif" border="0" width="170" height="150"></a>'
content[16]='<img src="/sponsors/2011/16.gif" border="0" width="170" height="150"></a>'
content[17]='<img src="/sponsors/2011/17.gif" border="0" width="170" height="150"></a>'
content[18]='<img src="/sponsors/2011/18.gif" border="0" width="170" height="150"></a>'
content[19]='<img src="/sponsors/2011/19.gif" border="0" width="170" height="150"></a>'
content[20]='<img src="/sponsors/2011/20.gif" border="0" width="170" height="150"></a>'
content[21]='<img src="/sponsors/2011/21.gif" border="0" width="170" height="150"></a>'
content[22]='<img src="/sponsors/2011/22.gif" border="0" width="170" height="150"></a>'
content[23]='<img src="/sponsors/2011/23.gif" border="0" width="170" height="150"></a>'
content[24]='<img src="/sponsors/2011/24.gif" border="0" width="170" height="150"></a>'
content[25]='<img src="/sponsors/2011/25.gif" border="0" width="170" height="150"></a>'
content[26]='<img src="/sponsors/2011/26.gif" border="0" width="170" height="150"></a>'
content[27]='<img src="/sponsors/2011/27.gif" border="0" width="170" height="150"></a>'
content[28]='<img src="/sponsors/2011/28.gif" border="0" width="170" height="150"></a>'
content[29]='<img src="/sponsors/2011/29.gif" border="0" width="170" height="150"></a>'
content[30]='<img src="/sponsors/2011/30.gif" border="0" width="170" height="150"></a>'
content[31]='<img src="/sponsors/2011/31.gif" border="0" width="170" height="150"></a>'
content[32]='<img src="/sponsors/2011/32.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'
//content[13]='<img src="/sponsors/2011/13.gif" border="0" width="170" height="150"></a>'


function randomorder(targetarray, spacing){

var randomorder=new Array()
var the_one
var z=0
for (i=0;i<targetarray.length;i++)
randomorder[i]=i

while (z<targetarray.length){
the_one=Math.floor(Math.random()*targetarray.length)
if (targetarray[the_one]!="_selected!"){
document.write(targetarray[the_one]+spacing)
targetarray[the_one]="_selected!"
z++
}
}
}
