//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="http://www.cantonstate.com/" target= "_blank"><img src="/sponsors/2007/cantonstatebank.gif" border="0" width="170" height="150"></a>'
content[1]='<a href="http://www.croell.com/" target= "_blank"><img src="/sponsors/2007/croell_redi_mix.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++
}
}
}