//random
//store links in the the quotations in arrays
//  make array object    total + 1      (including zero)

images = new Array(10);
// provide higher probability.. then repeat the new banners
images[0] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-1.jpg' border='0'></a>";
images[1] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-5.jpg' border='0'></a>";
images[2] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-4.jpg' border='0'></a>";
images[3] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-3.jpg' border='0'></a>";
images[4] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-2.jpg' border='0'></a>";

images[5] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-banner-0001.jpg' border='0'></a>";
images[6] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-banner-0002.jpg' border='0'></a>";
images[7] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-banner-0003.jpg' border='0'></a>";
images[8] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-banner-0004.jpg' border='0'></a>";
images[9] = "<a href = 'http://www.motorhelmets.com'><img src='http://www.motorhelmets.com/forums/banners/moto-banner-0005.jpg' border='0'></a>";

//images[ ] = "<a href = ''><img src='' border='0'></a>";
index = Math.floor(Math.random() * images.length);


document.write(images[index] );

//done

