// JavaScript DocumentRandCSS()function RandCSS() {a = Math.round(Math.random() * 4 + 1)if (a > 4) { RandCSS() } else { WriteCSS() }}function WriteCSS() {document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"styles/header" + a + ".css\">")}
