// JavaScript Document
var imglist = new Array(
	"bg0.css",
	"bg1.css",
	"bg2.css" );
var selectnum = Math.floor((Math.random() * 99)) % imglist.length;
var output = "<link rel='stylesheet' href='/css/"+imglist[selectnum]+"' type='text/css' media='screen' />";
document.write(output);
