// JavaScript Document

//<![CDATA[
var images = new Array(4);
images[0] = "#rotation { background: url(http://www.highcountrynews.info/hcn/graphics/rotation/snowtrees.jpg) no-repeat top left; }";
images[1] = "#rotation { background: url(http://www.highcountrynews.info/hcn/graphics/rotation/tree.jpg) no-repeat top left; }";
images[2] = "#rotation { background: url(http://www.highcountrynews.info/hcn/graphics/rotation/feets.jpg) no-repeat top left; }";
images[3] = "#rotation { background: url(http://www.highcountrynews.info/hcn/graphics/rotation/jamiedan.jpg) no-repeat top left; }";


var index = Math.floor(Math.random() * images.length);

document.write("<style type='text/css' media='all'>\n");
document.write("<!--\n");
document.write("" + images[index] + "\n");
document.write("-->\n");
document.write("</style>\n");
//]]>