    //make all news not display
		//-1 is the main list, 0 - x is the news articles 
		function showNews(index) {
			
			//take care of the main one
			document.getElementById('listsTdDivListItem').style.display = index == -1? 'block' : 'none';
			
		  //loop through and make them not display
		  for (var i=0;i<6;i++) {
			  var theName = 'listsTdDivListItem' + i;
				var element = document.getElementById(theName);
				if (element && element != null) {
					if (i==index) {
						element.style.display='block';
					} else {
  				  element.style.display='none';
					}
				}
			}
			return false;
		}

