<!-- 

// adCount = total number of subheader background images
adCount = 12;
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 = "" 

// Make sure the number of if-then clauses matches the number of subheader bg images set above in adCount
 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"
  }
 if(indexNum==8) {
  className = "bgb08"
  }
  if(indexNum==9) {
  className = "bgb09"
  }
  if(indexNum==10) {
  className = "bgb10"
  }
  if(indexNum==11) {
  className = "bgb11"
  }
  if(indexNum==12) {
  className = "bgb12"
  }

document.write("<div class=\"subHeader\" id=\"" + className + "\">"); 

// --> 
