<!-- TODO: change templates to specific dir -->
var max = 3;
//parseInt can give 0 as low so take up to max-1 and add 1 to result so is in line w/ image names
var j=parseInt(Math.random()*(max-1))+1;
j=(isNaN(j))?1:j;
//document.write("<link rel=stylesheet href='/templates/msTelcom/styles/"+list[j]+"'>");
//alert("<style type=\"text/css\">#topimage {background-image: url(/templates/msTelcom/images/header/top_image"+j+".jpg);}</style>");
document.write("<style type=\"text/css\">#topimage {background-image: url(/images/header/top_image"+j+".jpg);}</style>");