// JavaScript bit Document

var imglist = new Array(
	"headimage01a.css",
	"headimage02a.css",
	"headimage03a.css" );
var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
var output = "<link href=common/css/" + imglist[selectnum] + " rel=\"stylesheet\" type=\"text/css\">";
document.write(output);
