function showNewsItem(theId) {
	contentDiv = document.getElementById('newsContent_'+theId);
	teaserDiv  = document.getElementById('newsTeaser_'+theId);


	contentDiv.style.display = '';
	teaserDiv.style.display  = 'none';
}

