// JavaScript Document

window.location.href = "#1";

function activedial(blah) {
	numbah = 'state' + blah;
	document.getElementById('ovendial').className = numbah;
	whereAmI = blah;
}

function rightArrow() {
	whatev = document.getElementById('ovendial').className;
	if (whatev=='state1') {
		activedial(2);
	}
	if (whatev=='state2') {
		activedial(3);
	}
	if (whatev=='state3') {
		activedial(4);
	}
	if (whatev=='state4') {
		activedial(1);
	}
}

function leftArrow() {
	whatev = document.getElementById('ovendial').className;
	if (whatev=='state1') {
		activedial(4);
	}
	if (whatev=='state2') {
		activedial(1);
	}
	if (whatev=='state3') {
		activedial(2);
	}
	if (whatev=='state4') {
		activedial(3);
	}
}




