// JavaScript Document
people =  
[ 
 "p01",  
 "p02",  
 "p03",  
 "p04",  
 "p05",
 "p06",
 "p07",
 "p08",
 "p09",
 "p10",
 "p11",
 "p12",
 "p13",
 "p14",
 "p15",
 "p16",
 "p17",
 "p18",
 "p19",
 "p20",
 "p21",
 "p22",
 "p23",
 "p24",
 "p25",
 "p26",
 "p27",
 "p28",
 "p29"
] 
var person = people[Math.floor(Math.random()*people.length)] 
var e = document.getElementById("banner");
e.setAttribute("class", person);
e.setAttribute("className", person); // for IE which does not recognize "class"