/**
 * @author Noah
 */


function toggleSRC(id,location){
	id.src = location;
	id.style.cursor="pointer";
}

function toggleDisplay(id){
	var d = document.getElementById(id).style.display;
	
	if(d=="inline"){
		document.getElementById(id).style.display = "none";
	}else{
		document.getElementById(id).style.display = "inline";
	}
}

function articleExpandCollapse(id1,id2){
	toggleDisplay(id1);
	toggleDisplay(id2);
}
