var content=new Array()
content[0]='<LI><A HREF="http://www.aptera.com/" TARGET="_BLANK" ADD_DATE="04/06/08">Aptera Motors</A> - The Aptera Typ-1 (Electric 3-Wheel 2-Seater) was designed from the ground up as an electric vehicle, and later as an extended range electric vehicle.'
content[1]='<LI><A HREF="http://www.teslamotors.com/" TARGET="_BLANK" ADD_DATE="04/06/08">Tesla Motors</A> - Cutting Edge 2-seat, open-top, rear-drive Roadster, the Tesla Roadster illustrate what it does (0 to 60 mph in under 4 seconds) as well as what it doesn’t (zero emissions, zero motor oil). With one moving part in the motor, no clutch pedal, and two gears, it’s not only a joy to drive, but to own as well. There is no motor oil to change; no filters, belts, or spark plugs to replace; no oxygen sensors to mistrust before an emissions test.'

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

