// 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.coe.ohiou.edu/";
var cssArray = new Array( 
						 'css/generic/menu.css',
						 'css/generic/menu-02.css',
						 'css/generic/menu-03.css',
						 'css/generic/menu-04.css',
						 'css/generic/menu-05.css',
						 'css/generic/menu-06.css',
						 'css/generic/menu-07.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