// JavaScript Document

var nbimage= 90;
var width;
var height;
var url;

function aleatoire()

{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "team-jared-chilko.html";
url = "team/spot/team1.jpg";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "team-valera-talalaev.html";
url = "team/spot/team2.jpg";
}
if (numimage > 20 && numimage <= 30)
{
gotosite = "team-timur-karadschajew.html";
url = "team/spot/team3.jpg";
}
if (numimage > 30 && numimage <= 40)
{
gotosite = "team-ruslan-kurilin.html";
url = "team/spot/team4.jpg";
}
if (numimage > 40 && numimage <= 50)
{
gotosite = "team-will-gunn.html";
url = "team/spot/team5.jpg";
}
if (numimage > 50 && numimage <= 60)
{
gotosite = "team-akin-walker.html";
url = "team/spot/team6.jpg";
}
if (numimage > 60 && numimage <= 70)
{
gotosite = "team-ruslan-kutlubaev.html";
url = "team/spot/team7.jpg";
}
if (numimage > 70 && numimage <= 80)
{
gotosite = "team-michal-horowic.html";
url = "team/spot/team8.jpg";
}


if (numimage > 80)
{
gotosite = "team-tim-watson.html";
url = "team/spot/team9.jpg";
}

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