var content=new Array() //sample set 1
content[0]='<a href="http://www.metroplacecondo.com/"><img src="http://www.libertydevelopment.ca/images/template/Liberty_Rotating_Logos_MetroPlace_rev.gif" border="0" alt="Metro Place Condos and Metropolis by Liberty Development Corporation"></a>'
content[1]='<a href="http://www.thornhillcitycentre.ca/"><img src="http://www.libertydevelopment.ca/images/template/Liberty_Rotating_Logos_Thornhill_rev.gif" border="0" alt="Centre Park Condos and Centre Park Townes at Thornhill City Centre by Liberty Development Corporation"></a>'
content[2]='<a href="http://www.ekomarkhamcentre.com/"><img src="http://www.libertydevelopment.ca/images/template/Liberty_Rotating_Logos_eko_rev.gif" border="0" alt="eko Markham Centre and Liberty Square by Liberty Development Corporation"></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++
}
}
}

