// Kaosweaver CSS Switcher Pro - visit http://www.kaosweaver.com/ 
// Added my own workaround for use in templates... LINE 4 and the include in LINE 16
var urlBase = "http://www.finearts.ohio.edu/art/ceramics/css/";
var cssArray = new Array( 
						 'layout-generic/layout.css',
						 'layout-01/layout.css',
						 'layout-02/layout.css',
						 'layout-03/layout.css',
						 'layout-04/layout.css',
						 'layout-05/layout.css',
						 'layout-06/layout.css');
j=parseInt(Math.random()*cssArray.length);
j=(isNaN(j))?0:j;
document.write('<link rel="stylesheet" href="' + urlBase + cssArray[j] + '" type="text/css">')
  // Kaosweaver CSS Switcher Pro - Do not remove these lines