// JavaScript Document

//Edit this line to list all of your background images
var backgroundSrcs = new Array("/sites/pwypdev.gn.apc.org/themes/pwyp/inner_img/1.jpg","/sites/pwypdev.gn.apc.org/themes/pwyp/inner_img/2.jpg","/sites/pwypdev.gn.apc.org/themes/pwyp/inner_img/3.jpg","/sites/pwypdev.gn.apc.org/themes/pwyp/inner_img/4.jpg","/sites/pwypdev.gn.apc.org/themes/pwyp/inner_img/5.jpg")

window.onload = function() { pickimage();}
function pickimage()
{
//This line picks an image at random from the list you entered above
var bgimage=backgroundSrcs[(Math.round(Math.random()*(backgroundSrcs.length-1)))]

//This line applies the background image to your masthead
document.getElementById("header").style.background = "url('" + bgimage + "') no-repeat top right";
} 


