var path = window.location.pathname;
var pathElements = path.split("/");

var subsection = pathElements[1];

if (subsection == 'education') {
	document.write("<img src=/images/education.jpg>");
	}

else if (subsection == 'community') {
	document.write("<img src=/images/community.jpg>");
	}

else if (subsection == 'resources') {
	document.write("<img src=/images/resources.jpg>");
	}

else {
	document.write("<img src=/images/chronos.jpg>");
	}



