// JavaScript Document
//Author: Chris Terrell @ www.sector05.net
//For Website: www.mickeyzuckerreichert.com
//

var backgroundSrcs = new Array("assets/rndmimg/forest_masthead.jpg",
                               "assets/rndmimg/waterfall_masthead.jpg",
                               "assets/rndmimg/wolves_masthead.jpg",
							   "assets/rndmimg/mior_masthead.jpg"); 

function pickimage() 
{ 
//This line picks an image at random from the list entered above 
var bgimage=backgroundSrcs[(Math.round(Math.random()*(backgroundSrcs.length-1)))] 

//This line applies the background image to the masthead 
document.getElementById("masthead").style.background = "url('" + bgimage + "') left no-repeat #ffffff"; 
} 

