// Hide Show Function
function showHide(id) {

	// Change the button first
	//closeOthers()
	
	var moreID = 		document.getElementById(id);

	// Check to see if we should:
	// show or hide
	if (moreID.style.display == "block") {
		moreID.style.display = "none";
	} else {
		moreID.style.display = "block";
	}

} 