// JScript File
//Edit this line to list all of your background images 
		var picSrcs = new Array('/images/imagen1.jpg','/images/HOME_images_Page_15.jpg','/images/HOME_images_Page_01.jpg','/images/HOME_images_Page_06.jpg','/images/HOME_images_Page_12.jpg','/images/HOME_images_Page_16.jpg') 
        function newFunc() 
        { 
        //This line picks an image at random from the list you entered above 
        var bgimagex=picSrcs[(Math.round(Math.random()*(picSrcs.length-1)))] 
        //This line applies the background image to your masthead 
        document.getElementById("masthead").style.background = "url('" + bgimagex + "') left no-repeat #1e1e1e"; 
        }      
    
var previousOnLoad = window.onload;
function newOnLoad()
{
   previousOnLoad();
   newFunc();    
}
window.onload = newOnLoad;