﻿// Random Functions

// Used on the Home Page
function highlight(theNumber) {
	document.getElementById("thumb" + theNumber).style.background = 'url(/Media/Images/graphics/background-NewsThumbnail.gif) no-repeat bottom left';
	document.getElementById("desc" + theNumber).style.textDecoration = 'underline';
	document.getElementById("desc" + theNumber).style.color = '#2B78C3';
}
function unhighlight(theNumber) {
	document.getElementById("thumb" + theNumber).style.background = 'none';
	document.getElementById("desc" + theNumber).style.textDecoration = 'none';
}

// Used on the Hugh R. Sharp & East Coast Van Pool Pages
function doExpansion(intSectionID, intSectionCount) {

	for(i = 1; i <= intSectionCount; i++) {
		if (intSectionID == i) {
			if(document.getElementById("expansionSection" + i).style.visibility == "visible") {
				document.getElementById("expansionSection" + i).style.visibility = "hidden";
				document.getElementById("expansionSection" + i).style.display = "none";
			}
			else {
				document.getElementById("expansionSection" + i).style.visibility = "visible";
				document.getElementById("expansionSection" + i).style.display = "";
			}
		}
		else {
			document.getElementById("expansionSection" + i).style.visibility = "hidden";
			document.getElementById("expansionSection" + i).style.display = "none";
		}
	}
}
