

//Edit this line to list all of your background images
var backgroundSrcs = new Array("/images/Hero1.jpg","/images/Hero2.jpg","/images/Hero3.jpg","/images/Hero4.jpg","/images/Hero5.jpg","/images/Hero6.jpg","/images/Hero7.jpg","/images/Hero8.jpg")

var vImg;

var vWinery;

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)))]
	
	if(vWinery == true && vImg != ''){
	
	//This line applies the background image to your masthead
	document.getElementById("header").style.background = "url('" + vImg + "') no-repeat";
	}else{
		document.getElementById("header").style.background = "url('" + bgimage + "') no-repeat";
	}
	
} 
	
function startAll() {
  pickimage();
  so_init_1();
}


function start() {
  pickimage();
}
