// JavaScript Document

var nbimage= 40;
var width;
var height;
var url;

function aleatoire()

{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "edge9stem.html";
url = "products/spot/prods1.jpg";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "rearhub.html";
url = "products/spot/prods2.jpg";
}

if (numimage > 20 && numimage <= 30)
{
gotosite = "rearhub.html";
url = "products/spot/prods2.jpg";
}
if (numimage > 30 )
{
gotosite = "rearwheel.html";
url = "products/spot/prods4.jpg";
}

if(gotosite != "")
	{
	document.write ('<A HREF="' + gotosite + '">');
	}
document.write('<IMG SRC="' + url + '" border="0">')
if(gotosite != "")
	{
	document.write('</A>')
	}
}
