function resetTabs ( parentName,theObj ) {
	// loop through the list, and reset the class to ''
	var list = document.getElementById(parentName).childNodes;
	var i;
	var subItems;
	for(i=0;i<list.length;i++)	{
		if( list[i].tagName == 'LI' ) { list[i].className = '';	}
	}
	theObj.parentNode.className = 'selTab';
}

function loadContent( theDivName, newsQuery ) {
	theDiv = document.getElementById(theDivName);
	theDiv.innerHTML = 'Loading...';
	
	AJAXCallerXML_AJAX( [newsQuery] );
}