var curImage ;
var maxImage = 9;
var backgrounds = new Array();

backgrounds[0]= '<img src="../../assets/top/rounded_aquarium.jpg" alt="" width="709" height="481" />';
backgrounds[1]= '<img src="../../assets/top/picnic_opv2.jpg" alt="" width="709" height="481" />';
backgrounds[2]= '<img src="../../assets/top/rounded_sculptor.jpg" alt="" width="709" height="481" />&nbsp;';
backgrounds[3]= '<img src="../../assets/top/old/optimized/milk_op.jpg" alt="" width="709" height="481" />';
backgrounds[4]= '<img src="../../assets/top/rounded_woman_vegetables.jpg" alt="" width="709" height="481" />';
backgrounds[5]= '<img src="../../assets/top/old/optimized/running_op.jpg" alt="" width="709" height="481" />';
backgrounds[6]= '<img src="../../assets/top/rounded_kayak.jpg" alt="" width="709" height="481" />';
backgrounds[7]= '<img src="../../assets/top/rounded_carousel.jpg" alt="" width="709" height="481" />';
backgrounds[8]= '<img src="/assets/MHC_1012_Burroughs_Home.jpg" alt="" width="709" height="481" />New Background';


if (get_cookie("homeimage") != ""){
	curImage = get_cookie("homeimage");
}

if (isNaN(curImage)){
	curImage = -1;
}

function swapHomePageBackground(){
	
	curImage++;

	if (curImage >= maxImage){
		curImage = 0;
	}

	$("hero0").select("img")[0].replace(backgrounds[curImage]);

	document.cookie="homeimage=" + curImage;
}

