<!-- TODO: change templates to specific dir -->

var max = 8;
//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/distribuidora/styles/style_distribuidora.css"+list[j]+"'>");
//alert("<style type=\"text/css\">#topimage {background-image: url(/templates/distribuidora/images/header/top_image"+j+".jpg);}</style>");
document.write("<style type=\"text/css\">#topimage {background-image: url(/images/header/top_image"+j+".jpg);}</style>");

