window.onload = function(){
	var tempCoupleCount="00";
	var tempYearLength=0;
	for(i=6;i<=9;i++){
		tempCoupleCount="00"+i;
		tempYearLength=tempCoupleCount.length;
		tempCoupleCount=tempCoupleCount.substring(tempYearLength-2,tempYearLength);
		document.getElementById('old-news20'+tempCoupleCount).style.display = 'none';
	}
}

function toggleBox(id){
	if(document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = 'block';
	}else{
		document.getElementById(id).style.display = 'none';
	}
}