/*---------------------------------------------------------------------------//

	dynamic.js
	
	does various dynamic things to the pages

//---------------------------------------------------------------------------*/
//---------------------------------------------------------------------------//
// change display of a given element
function expand(thistag) {
	styleObj = document.getElementById(thistag).style;
	if (styleObj.display == 'none') {
		styleObj.display = 'inline';
	}
	else {
		styleObj.display = 'none';
	}
}
//---------------------------------------------------------------------------//
// switch the innerHTML from "More >>" to "Less <<"
function moreLess(el) {
	ob = document.getElementById(el);
	if (ob.innerHTML == "More &gt;&gt;") {
		ob.innerHTML = "Less &lt;&lt;";
	} else {
		ob.innerHTML = "More &gt;&gt;";
	}
}
//---------------------------------------------------------------------------//
function swapImage() {
	
}
//---------------------------------------------------------------------------//
//---------------------------------------------------------------------------//
