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

backgrounds[0]= '<img src="../../assets/top/old/optimized/chattanooga1_op.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/old/optimized/portera_op.jpg" alt="" width="709" height="481" />';
backgrounds[3]= '<img src="../../assets/top/chattanooga2_opv2.jpg" alt="" width="709" height="481" />';
backgrounds[4]= '<img src="../../assets/top/old/optimized/milk_op.jpg" alt="" width="709" height="481" />';
backgrounds[5]= '<img src="../../assets/top/old/optimized/arrowsmith_op.jpg" alt="" width="709" height="481" />';
backgrounds[6]= '<img src="../../assets/top/chattanooga3_op.jpg" alt="" width="709" height="481" />';
backgrounds[7]= '<img src="../../assets/top/old/optimized/running_op.jpg" alt="" width="709" height="481" />';
backgrounds[8]= '<img src="../../assets/top/currin_opv2.jpg" alt="" width="709" height="481" />';
backgrounds[9]= '<img src="../../assets/top/hunt_opv2.jpg" alt="" width="709" height="481" />';


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;
}
