// JavaScript Document

function flipSubnav(item) {
	var subSection = document.getElementById("nav-glob-sub-text");
	
	switch(item)
	{
	case "one":
  	subSection.innerHTML = "<a href='schedule/'>Main Schedule</a>, <a href=''>Class Events</a>, and <a href=''>Affinity Group Gatherings</a>.";
  	break;    
	case "two":
  	subSection.innerHTML = "&nbsp;";
 	break;
	case "three":
  	subSection.innerHTML = "&nbsp;";
 	break;
	case "four":
  	subSection.innerHTML = "&nbsp;";
 	break;
	case "five":
  	subSection.innerHTML = "promoting reunion activities, planning events, or supporting the reunion gift effort.";
 	break;
	case "six":
  	subSection.innerHTML = "about parking, travel, accommodations, child care, disability resources, dietary restrictions, and more.";
 	break;
	default:
  	subSection.innerHTML = "&nbsp;";
	}
	
}
