/*
Random-Order content script
By JavaScript Kit (http://www.javascriptkit.com)
This notice must stay intact for use
*/

//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() //sample set 1
content[0]='<a href="http://www.dwsimpson.com" target="_blank"><img src="images/home/dwsimpson.gif" border=0 align="middle"></a>'
content[1]='<a href="http://www.cesfl.com" target="_blank"><img src="images/home/Criterion_ad.gif" border=0></a>'
content[2]='<a href="http://www.starintermediary.com" target="_blank"><img src="images/home/IRGroup.gif" border=0></a>'
content[3]='<a href="jobs_co_list.asp?co_code=JWALSH"><img src="images/home/cjwalsh.gif" style="border-style: solid; border-color: gray; border-width: 1px"></a>'
content[4]='<a href="jobs_co_list.asp?co_code=AMATO"><img src="images/home/AmatoBanner.jpg" style="border-style: solid; border-color: gray; border-width: 1px"></a>'
content[5]='<a href="jobs_co_list.asp?co_code=HDHNTRENA"><img src="images/home/ExeCareer.jpg" style="border-style: solid; border-color: gray; border-width: 1px"></a>'
content[6]='<a href="jobs_co_list.asp?co_code=VARCO"><img src="images/home/Varco.jpg" style="border-style: solid; border-color: gray; border-width: 1px"></a>'
content[7]='<a href="jobs_co_list.asp?co_code=CDRIVARD"><img src="images/home/Rivard.jpg" style="border-style: solid; border-color: gray; border-width: 1px"></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++
}
}
}