//Edit this list of images to change images.
var backgroundSrcs = new Array("/gfx/content_bg_links.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 + "')"; 
}