function toggleNews(theID){
	var theNewsItem = $("#divNewsContent_"+theID);
	var theNewsArrow = $("#aNewsArrow_"+theID);
	theNewsArrow.toggleClass("news_arrow_active");
	theNewsItem.slideToggle();
}
