function rnd() {
rnd.seed = (rnd.seed*9301+49297) % 233280;
return rnd.seed/(233280.0);
};

function rand(number) {
return Math.ceil(rnd()*number);
};

rnd.today=new Date();
rnd.seed=rnd.today.getTime();

var num = 0;
var len = 14;
var arrayAd = new Array(len);

arrayAd[0] = "&nbsp;<a title=\"John Deere: Drive Green\" href=\"john-deere-drive-green-game.htm\"><img src=\"drvingimages/john-deere-drive-green-80.jpg\"></a>&nbsp;";
arrayAd[1] = "&nbsp;<a title=\"Bus Driver\" href=\"bus-driver-game.htm\"><img src=\"drvingimages/bus-driver-80.jpg\"></a>&nbsp;";
arrayAd[2] = "&nbsp;<a title=\"Golden Age of Racing\" href=\"golden-age-of-racing-game.htm\"><img src=\"drvingimages/golden-age-of-racing-80.jpg\"></a>&nbsp;";
arrayAd[3] = "&nbsp;<a title=\"18 Wheels of Steel: American Long Haul\" href=\"18-wheels-of-steel-american-long-haul-game.htm\"><img src=\"drvingimages/18-wheels-of-steel-american-long-haul-80.jpg\"></a>&nbsp;";
arrayAd[4] = "&nbsp;<a title=\"Toca Race Driver 3\" href=\"toca-race-driver-3-game.htm\"><img src=\"drvingimages/toca-race-driver-3-80.jpg\"></a>&nbsp;";
arrayAd[5] = "&nbsp;<a title=\"Xpand Rally\" href=\"xpand-rally-game.htm\"><img src=\"drvingimages/xpand-rally-80.jpg\"></a>&nbsp;";
arrayAd[6] = "&nbsp;<a title=\"Sprint Car Challenge\" href=\"sprint-car-challenge-game.htm\"><img src=\"drvingimages/sprint-car-challenge-80.jpg\"></a>&nbsp;";
arrayAd[7] = "&nbsp;<a title=\"18 Wheels of Steel: Across America\" href=\"18-wheels-of-steel-across-america-game.htm\"><img src=\"drvingimages/18-wheels-of-steel-across-america-80.jpg\"></a>&nbsp;";
arrayAd[8] = "&nbsp;<a title=\"rFactor\" href=\"rfactor-game.htm\"><img src=\"drvingimages/rfactor-80.jpg\"></a>&nbsp;";
arrayAd[9] = "&nbsp;<a title=\"Euro Truck Simulator!\" href=\"euro-truck-simulator-game.htm\"><img src=\"drvingimages/euro-truck-simulator-80.jpg\"></a>&nbsp;&nbsp;";
arrayAd[10] = "&nbsp;<a title=\"Spa Mania - Deliver 5-star service in San Francisco.\" href=\"arcade-spa-mania.htm\"><img src=\"http://games.bigfishgames.com/en_spa-mania/spa-mania_80x80.jpg\"></a>&nbsp;";
arrayAd[11] = "&nbsp;<a title=\"Supermarket Management - Help Kate climb her way to the top!\" href=\"supermarket-management-game.htm\"><img src=\"http://games.bigfishgames.com/en_supermarket-management/supermarket-management_80x80.jpg\"></a>&nbsp;";
arrayAd[12] = "&nbsp;<a title=\"Big City Rigs: Garbage Truck Driver!\" href=\"big-city-rigs-garbage-truck-driver-game.htm\"><img src=\"drvingimages/big-city-rigs-garbage-truck-driver-80.jpg\"></a>&nbsp;";
arrayAd[13] = "&nbsp;<a title=\"TruckSaver!\" href=\"trucksaver-game.htm\"><img src=\"drvingimages/trucksaver-80.jpg\"></a>&nbsp;";

document.write("<div id = \"toplist\">");
for(i = 0; i < 9; i++)
{
	num = rand(len - i);
	document.write(arrayAd[num-1]);
	arrayAd.splice(num-1,1);
}
document.write("</div>");