<!-- 

adCount = 7;
var1 = Math.random(); 
// document.write("var1=" + var1 + "<P>"); 
indexNum = (var1 * adCount) + 1;
// document.write("indexNum=" + indexNum + "<P>"); 
indexNum = Math.floor(indexNum);
// document.write("indexNum=" + indexNum + "<P>"); 

className = "" 

 if(indexNum==1) {
  className = "bgb01"
  }
 if(indexNum==2) {
  className = "bgb02"
  }
 if(indexNum==3) {
  className = "bgb03"
  }
 if(indexNum==4) {
  className = "bgb04"
  }
 if(indexNum==5) {
  className = "bgb05"
  }
 if(indexNum==6) {
  className = "bgb06"
  }
 if(indexNum==7) {
  className = "bgb07"
  }

document.write("<div class=\"subHeader\" id=\"" + className + "\">"); 

// --> 

