function showNext() {
	document.getElementById("next").style.background = "#f00";
	document.getElementById("next").style.color = "#fff";
}

function hideNext() {
	document.getElementById("next").style.background = "#fff";
	document.getElementById("next").style.color = "#f00";
}

