//the hideAll function needs to be on each individual page.



function show(item_id) {

		hideAll();

		document.getElementById(item_id).style.display = 'block'; 

	}

function hide(item_id) {

	document.getElementById(item_id).style.display = 'none'; 

}