// JavaScript Document
<!--
var boy = new Array; 
boy[0] = "banner.jpg";
boy[1] = "banner_youth.jpg"; 
boy[2] = "banner_girls.jpg"; 
var boyChoice = Math.floor(Math.random() * boy.length); 
document.write("<img src='../images/" + boy[boyChoice] + "' width='964' height='97' />"); 