/**
 * Menu handler for Boston Ballet's Flash Menu
 * 
 * @author Chris
 */

function resizeHeight(elemId, newHeight) {
	var elem = document.getElementById(elemId);
	elem.style.height = newHeight + "px";
}

function hideElement(elemId) {
	var elem = document.getElementById(elemId);
	elem.style.display = "none";
}