/*RandCSS()
function RandCSS() {
a = Math.round(Math.random() * 14 + 1)
if (a > 14) { RandCSS() } else { WriteCSS() }
}*/
RandCSS()
function RandCSS() {
a = Math.round(Math.random() * 7); /*Update 31-12-2011: Tolti ultimi due sfondi*/
//alert(a);
/*if (a > 9) { RandCSS() } else { WriteCSS() }*/
WriteCSS();
}

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

