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