//Edit this list of images to change images.
var backgroundSrcs = new Array("/gfx/calendars/2007/cover-07.jpg","/gfx/calendars/2007/dec-06.jpg","/gfx/calendars/2007/jan-07.jpg","/gfx/calendars/2007/feb-07.jpg","/gfx/calendars/2007/mar-07.jpg","/gfx/calendars/2007/apr-07.jpg","/gfx/calendars/2007/may-07.jpg","/gfx/calendars/2007/jun-07.jpg","/gfx/calendars/2007/jul-07.jpg","/gfx/calendars/2007/aug-07.jpg","/gfx/calendars/2007/sep-07.jpg","/gfx/calendars/2007/oct-07.jpg","/gfx/calendars/2007/nov-07.jpg","/gfx/calendars/2007/dec-07.jpg")

function pickimage() 
{ 
//This line picks an image at random from the list above 
var bgimage=backgroundSrcs[(Math.round(Math.random()*(backgroundSrcs.length-1)))]

//This line applies the background image to the CONTENT DIV
document.getElementById("content").style.background = "url('" + bgimage + "')"; 
}

//Contact Terry Evans @ www.vibe9design.com for more info about this script.