﻿var content=new Array() //sample set 1
content[0]='Stamps Made To Order'
content[1]='Guillotines, Trimmers & Shredders'
content[2]='Binders & Laminators'
content[3]='Magnetic, Non-Magnetic &amp; Other Boards'
content[4]='Original Cartridges & Computer Accessories'
content[5]='Scholastic &amp; Office Stationery'

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++
}
}
}