// ---------------------------------------------------------------
// StyleSwap.js by Jessica Winblad
// A javascript library to swap out stylesheets at random
// ---------------------------------------------------------------

// modify this list to include the stylesheets you want to use
var itemList = new Array('style1.css', 'style2.css', 'style3.css', 'style4.css', 'style5.css');

var randomNum = Math.round(Math.random() * (itemList.length-1)+0);
var writestring = "<link href='" +itemList[randomNum]+ "' rel='stylesheet' type='text/css'>";
document.write(writestring);

