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(4);

images[0] = "<a href='academics/courses.html' title='winter classes'><img src='images2/home/ads/register.jpg' alt='winter class schedule' width='196' height='115' border='0' /></a><br>Register now for winter classes. <a href='academics/courses.html' title='winter classes'>Winter class schedule &raquo;</a>";

images[1] = "<a href='news/releases.html#scoreboard' title='new media board'><img src='images2/home/ads/mediaboard.jpg' alt='media board' width='196' height='115' border='0' /></a><br>New media board lights up Blazer games. <a href='news/releases.html#scoreboard' title='new media board'>More &raquo;</a>";

images[2] = "<img src='images2/home/ads/etutoring-logo.gif' alt='etutoring logo' width='196' height='115' border='0' /><br>Login to eTutoring at <a href='cconline/index.html'>CC ONLINE</a><br><br>";

images[3] = "<a href='students/transportation/index.html' title='find transportation to campus'><img src='images2/home/ads/transit.jpg' alt='bus transit' width='196' height='115' border='0' /></a><br>Need help getting to campus? See <a href='students/transportation/index.html' title='transportation to campus'>Transportation to Campus</a> &raquo;";

index = Math.floor(Math.random() * images.length);
*/

//done

/* place in body where images should be:
        document.write(images[index]);  
*/
//-->

