img = new Array();
img[0] = "img/button/top22.jpg";
img[1] = "img/button/top25.jpg";
img[2] = "img/button/top23.jpg";
img[3] = "img/button/top24.jpg";
img[4] = "img/button/top21.jpg";

function setBanner(){
	amount = img.length;
	No = Math.floor(Math.random()*amount);
	document.write("<img src='" + img[No] + "' border='0'>");
}