function show_article(element, total) {
	for(i=1; i<= total; i++) {
		document.getElementById('article_'+i).style.display = 'none';
	}
	document.getElementById('article_'+element).style.display = 'block';
}