
// CSS switcher to replace header background image

RandCSS()
function RandCSS() {
a = Math.round(Math.random() * 8 + 1)
if (a > 8) { RandCSS() } else { WriteCSS() }
}

function WriteCSS() {
document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/layout-header-" + a + ".css\">")
}