/*
Random-Order content script
For ADSBS the description is limited to 10 words
By HUEY Productions (http://www.hueyproductions.com)
This notice must stay intact for use
*/

//1) Specify content(s) to display and rotate
//   You can specify multiple "sets", each displayed in different areas of your page

var content=new Array() // set 1
content[0]='<a target="_blank" href="http://www.stoneaxefarm.com/"><font face="Arial" color="#000000"><b>Stone Axe Farm<br>San Angelo, Texas</b><br><br>Offering quality seedstock ewes, lambs, and occasionally rams.</a></font>'

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++
}
}
}