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(2);

images[0] = "<a href='http://www.centralia.edu/news/student.html#lindsey'><img src='images2/home/profiles/lindsey.jpg' alt='Lindsey Hoogkamer' border='0'></a><h3>Lindsey Hoogkamer</h3>was selected for <a href='http://www.centralia.edu/news/student.html#lindsey'>Student Employee of the Quarter</a>.";
images[1] = "<a href='http://www.centralia.edu/news/student.html#perez'><img src='images2/home/profiles/perez.jpg' alt='Kay Perez' border='0'></a><h3>Kay Perez</h3>was selected for <a href='http://www.centralia.edu/news/student.html#perez'>Student Employee of the Quarter</a>.";

index = Math.floor(Math.random() * images.length);

*/

//done

/* place in body where images should be:
        document.write(images[index]);  
*/
//-->



