
function changeDisplayDetails(num) {
	var layerid  = document.getElementById("display_details");

	//1 - Student Educator
	//2 - Senior
	//3 - Artist
	//4 - Individual
	//5 - Dual/Household
	//6 - Associate
	//7 - Connector
	//8 - Supportor
	//9 - Patron
	var response = '';
	switch (num) {
	case 5:
		response = "<p>&gt; Membership and benefits for 2 individuals and all children in the household under 18</p>";
		response = response + "<p>&gt; Priority registration for Family Day events</p>";
		response = response + "<p>&gt; 10% discount for Camp Artpace & Artpace Teen Camp enrollment fees</p>";
		break;
	case 6:
		response = "<p>RECEIVE DUAL/HOUSEHOLD BENEFITS PLUS</p>";
		response = response + "<p>&gt; Invitation to one Behind-the-Scenes evening at Artpace with the Executive Director</p>";
		break;
	case 7:
		response = "<p>RECEIVE ASSOCIATE BENIFITS PLUS</p>";
		response = response + "<p>&gt; Invitation to one exclusive VIP Breakfast and preview of IAIR or HSR exhibit at Artpace with the Executive Director and artist(s)</p>";
		break;
	case 8:
		response = "<p>RECEIVE CONNECTOR BENEFITS PLUS</p>";
		response = response + "<p>&gt; Invitation to one exclusive HSR opening dinner with featured artist</p>";
		break;
	case 9:
		response = "<p>RECEIVE SUPPORTER BENEFITS PLUS</p>";
		response = response + "<p>&gt; Invitation to one exclusive IAIR opening dinner with resident artist and curators</p>";
		break;
	default:
		response = "<p>ARTPACE BASIC BENEFITS</p>";
		break;
	}
	layerid.innerHTML = response;
}
