function initDisplay() {
	document.getElementById('display').innerHTML = "<h5>Select a job from the list on the left to display details</h5>";
}

function showJob(element, jobId) {
	document.getElementById('display').innerHTML = document.getElementById(jobId).innerHTML;
}