function GetRandomCSS() {
   var cssList = new Array(
   		'styles-site01.css',
		'styles-site03.css',
        'styles-site04.css',
        'styles-site05.css',
		'styles-site06.css',
		'styles-site07.css',
		'styles-site11.css');
   var randnum = Math.floor(cssList.length *
        Math.random());
   return cssList[randnum];
}
function changeCSS() {
   document.getElementById('cssHolder').setAttribute(
        'href',
        GetRandomCSS());
}
