var poemLanguage="AS";
var poemTranslation;
function translate () {
	if (poemLanguage=="AS") {
		poemTranslation=document.createTextNode("Aurochs is a courageous beast, having huge horns, A savage beast, it fights with its horns, A noble stalker of the moors, it is a fierce beast!");
		poemLanguage="English";
	}
	else {
		poemTranslation=document.createTextNode("Ur byþ anmod and oferhyrned, felafrecne deor feohteþ mid hornum, mære morstapa þæt is modig wuht.");
		poemLanguage="AS";
	}
	var poemNode=document.getElementById("bys");
	poemNode.removeChild(poemNode.lastChild);
	poemNode.appendChild(poemTranslation);
}
