img = new Array();
img[0] = "images/top/top_img1.jpg";
img[1] = "images/top/top_img2.jpg";

function topimg(){
	amount = img.length;
	No = Math.floor(Math.random()*amount);
	document.write("<img src='" + img[No] + "' border='0'>");
}
