/****************************************
custom.js 
****************************************/
function test() {
	var imglist = new Array(
	);
	var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
	document.topimg.src = imglist[selectnum];
}

