var xpos = 0;

function summer() {
	if (document.getElementById) {
		if (xpos == 808) xpos = 0;
	
		document.getElementById("outerouter").style.backgroundPosition = xpos + "px 0px";
		xpos += 1;
		setTimeout('summer()', 150);
	}
}

function winter() {

}
