RandCSS()
function RandCSS() {
a = Math.round(Math.random() * 14 + 1)
if (a > 14) { RandCSS() } else { WriteCSS() }
}

function WriteCSS() {
document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/style" + a + ".css\">")
}
