
/* MAP ROLLOVER */
function map_rollover(state) {
	var stateimg = document.getElementById("stateimg").style;
	
	if (state == "mn") {
		stateimg.backgroundPosition = "-180px 0px";
		return;
	}
	else if (state == "wi") {
		stateimg.backgroundPosition = "-360px 0px";
		return;
	}
	else if (state == "mi") {
		stateimg.backgroundPosition = "-540px 0px";
		return;
	}
	else if (state == "il") {
		stateimg.backgroundPosition = "-720px 0px";
		return;
	}
	else if (state == "oh") {
		stateimg.backgroundPosition = "-900px 0px";
		return;
	}
	else {
		stateimg.backgroundPosition = "0px 0px";
		return;
	}
	
}