/*TQ Interactive (2009) - Random CSS Javascript (http://www.tqinteractive.com)
*/

RandCSS()
function RandCSS() {
a = Math.round(Math.random() * 1 + 1)
if (a > 1) { RandCSS() } else { WriteCSS() }
}

function WriteCSS() {
document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/style" + a + ".css\">")
}