//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]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=ajpetersburg" target="_blank"><img src="../banners/ajpetersburg.gif" border="1" width="234" height="120"></a>'
content[1]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=arends" target="_blank"><img src="../banners/arends.gif" border="1" width="234" height="120"></a>'
content[2]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=decorahbank" target="_blank"><img src="../banners/decorahbank.gif" border="1" width="234" height="120"></a>'
content[3]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=friest" target="_blank"><img src="../banners/friest.gif" border="1" width="234" height="120"></a>'
content[4]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=kelly" target="_blank"><img src="../banners/kelly.gif" border="1" width="234" height="120"></a>'
content[5]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=kerndtauction" target="_blank"><img src="../banners/kerndt.gif" border="1" width="234" height="120"></a>'
content[6]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=massman" target="_blank"><img src="../banners/massman.gif" border="1" width="234" height="120"></a>'
content[7]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=mracek" target="_blank"><img src="../banners/mracek.gif" border="1" width="234" height="120"></a>'
content[8]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=gundersen" target="_blank"><img src="../banners/gundersen.gif" border="1" width="234" height="120"></a>'
content[9]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=thrivent" target="_blank"><img src="../banners/thrivent.gif" border="1" width="234" height="120"></a>'
content[10]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=viking-realty" target="_blank"><img src="../banners/viking-realty.gif" border="1" width="234" height="120"></a>'
content[11]='<a href="../cgi-bin/showandsell/showsell.pl?redirect=winnchiropractic" target="_blank"><img src="../banners/winnchiropractic.jpg" border="1" width="234" height="120"></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++
}
}
}