function teaserboxToggle(teaserid) {
	teaser = document.getElementById("teaserboxteaser"+teaserid);
	full = document.getElementById("teaserboxfull"+teaserid);
	
	wasTeaser = (teaser.style.display != "none");
	
	teaser.style.display = (wasTeaser ? "none" : "block");
	full.style.display = (wasTeaser ? "block" : "none");
}

function teaserboxInit(teasercount) {
	for (i=0; i<teasercount; i++) {
		teaserboxToggle(i);
	}
}

