function makeArray(n) {
this.length = n
return this
}
monthNames = new makeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"
function dateString(oneDate) {
var theMonth = monthNames[oneDate.getMonth() + 1]
var theYear = oneDate.getFullYear()
return theMonth + " " + oneDate.getDate() + ", " + theYear
}


images = new Array(5);

images[0] = "<img src='images/boyLaptop2.jpg' border='0' alt='student viewing laptop'>";

images[1] = "<img src='images/girlLaptop2.jpg' border='0' alt='student online'>";

images[2] = "<img src='images/laptopLap.jpg' border='0' alt='student working on laptop'>";

images[3] = "<img src='images/girlLaptop.jpg' border='0' alt='student learning online'>";

images[4] = "<img src='images/girlLaptop3.jpg' border='0' alt='student online'>";

index = Math.floor(Math.random() * images.length);


//done

/* place in body where images should be:
        document.write(images[index]);  
*/
//-->