var contents=new Array()

contents[0]='<p align=center><a href="http://www.ozonelite.it/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/ozone.jpg" border=0 width=112 height=50></a></p>';

contents[1]='<p align=center><a href="http://www.campagnolo.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/campagnolo.jpg" border=0 width=112 height=50></a></p>';

contents[2]='<p align=center><a href="http://www.selleitalia.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/selleitalia.jpg" border=0 width=112 height=50></a></p>';

contents[3]='<p align=center><a href="http://www.conti-tyres.co.uk/conticycle" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/continental.jpg" border=0 width=112 height=50></a></p>';

contents[4]='<p align=center><a href="http://www.parktool.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/parktool.jpg" border=0 width=112 height=50></a></p>';

contents[5]='<p align=center><a href="http://www.thule.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/thule.jpg" border=0 width=112 height=50></a></p>';

contents[6]='<p align=center><a href="http://www.speedplay.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/speedplay.jpg" border=0 width=112 height=50></a></p>';

contents[7]='<p align=center><a href="http://www.elite-it.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/elite.jpg" border=0 width=112 height=50></a></p>';

contents[8]='<p align=center><a href="http://www.swissstop.ch/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/swissstop.jpg" border=0 width=112 height=50></a></p>';

contents[9]='<p align=center><a href="http://www.firstendurance.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/1stendurance.jpg" border=0 width=112 height=50></a></p>';

contents[10]='<p align=center><a href="http://www.oakley.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/oakley.jpg" border=0 width=112 height=50></a></p>';

contents[11]='<p align=center><a href="http://www.motorex.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/motorex.jpg" border=0 width=112 height=50></a></p>';


var i=0

//variable used to contain controlled random number 

var random

var spacing=""

//while all of array elements haven't been cycled thru

document.write('<p align=center><a href="http://www.bmc-racing.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/bmc.jpg" border=0 width=112 height=50></a></p>');
document.write('<p align=center><a href="http://www.eastonbike.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/easton1.jpg" border=0 width=112 height=50></a></p>');
document.write('<p align=center><a href="http://www.bellbikehelmets.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/bell.jpg" border=0 width=112 height=50></a></p>');
document.write('<p align=center><a href="http://www.hincapie.com/" target="_blank"><IMG SRC="fileadmin/dateien/sponsoren2/hincapie.jpg" border=0 width=112 height=50></a></p>');


while (i<contents.length){

//generate random num between 0 and arraylength-1

random=Math.floor(Math.random()*contents.length)

//if element hasn't been marked as "selected"

if (contents[random]!="selected"){

document.write(contents[random]+spacing)

//mark element as selected

contents[random]="selected"

i++

}

}
