
function changeTo(what, text) {
	what.innerHTML = text;
	what.className = "";
}

function readmore(hideLink, whatStory) {
	rm = hideLink;
	story = document.getElementById(whatStory);
	rm.style.display = "none";
	story.style.display = "block";
}