// 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 = "team-jared-chilko.html";
url = "frontnews/team/team1.jpg";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "team-timur-karadschajew.html";
url = "frontnews/team/team2.jpg";
}
if (numimage > 20 && numimage <= 30)
{
gotosite = "team-will-gunn.html";
url = "frontnews/team/team3.jpg";
}
if (numimage > 30)
{
gotosite = "team-ruslan-kurilin.html";
url = "frontnews/team/team6.jpg";
}



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