// randomcss.js - Michael S. Sanders 2010
// example demonstrating loading a random stylesheet
// license: gpl3

var theme=new Array(3)

theme[0]="<link rel='stylesheet' type='text/css' href='/ekmps/shops/ofodieze/resources/Styles/newcss.css'>"
theme[1]="<link rel='stylesheet' type='text/css' href='/ekmps/shops/ofodieze/resources/Styles/newcss1.css'>"
theme[2]="<link rel='stylesheet' type='text/css' href='/ekmps/shops/ofodieze/resources/Styles/newcss2.css'>"   

document.write(theme[Math.floor(Math.random()*3)])



