
function toggle(id) {

	thisdt = document.getElementById(id);
	thisdd = document.getElementById(id + 'desc');
	thislink = document.getElementById(id + 'more');
	state = thisdd.style.display;
	thisdd.style.display = (state == 'block') ? 'none' : 'block';
	thislink.innerHTML = (state == 'block') ? 'Show details' : 'Hide details';
	/**img = (state == 'block') ? 'collapsed' : 'expanded';
	thislink.style.background = 'url(/giving/img/arrow_' + img + '.gif) center left no-repeat';**/

}


