
function doExpand(paraNum){
	//expand the paragraph and rotate the arrow; collapse and rotate it back
	if (paraNum.style.display=="none")
		{
			paraNum.style.display="";
			
		}
	else
		{
			paraNum.style.display="none";
		}
}


//Insert new functions here. Please use unique identifiers and comment liberally.
