var colours = ['#922790', '#ED1D24', '#F37021', '#18B1E7', '#B7292F', '#DA2128', '#51B848', '#DA2128', '#00A1E4'];


	var num = Math.round(Math.random() * ( colours.length -1 ));
	document.writeln("<style type=\"text/css\">");
	document.writeln("<!-- ");
	document.writeln(".subnav1 a, .blpromo a .text{ background-color:" + colours[num] + ";}");
	document.writeln(".text a, .lgimgholder a, .viewlink a, .credit a{ color:" + colours[num] + ";}");
	document.writeln(".text a:hover,  .lgimgholder a:hover, .viewlink a:hover, .credit a:hover{ color:" + colours[num] + ";}");
	//document.writeln(colours[num]);
	document.writeln(" -->");
	document.writeln("</style>");

