if (document.getElementById('optionEA').checked == true) { showExecutive();highlightCurrent('optionExecutiveA');showAll(); }
if (document.getElementById('optionEB').checked == true) { showExecutive();highlightCurrent('optionExecutiveB');showGown(); }
if (document.getElementById('optionEC').checked == true) { showExecutive();highlightCurrent('optionExecutiveC');showCapTassel(); }
if (document.getElementById('optionED').checked == true) { showExecutive();highlightCurrent('optionExecutiveD');showCap(); }
if (document.getElementById('optionWWA').checked == true) { showWonWay();highlightCurrent('optionWonWayA');showAll(); }
if (document.getElementById('optionWWB').checked == true) { showWonWay();highlightCurrent('optionWonWayB');showGown(); }
if (document.getElementById('optionWWC').checked == true) { showWonWay();highlightCurrent('optionWonWayC');showCapTassel(); }
if (document.getElementById('optionWWD').checked == true) { showWonWay();highlightCurrent('optionWonWayD');showCap();  }

function showWonWay() {
	//HIDE EXECUTIVE COLOR OPTIONS, SHOW WON-WAY OPTIONS
	document.getElementById('wonwayColorA').style.visibility = "visible";
	document.getElementById('wonwayColorA').style.position = "relative";	
	document.getElementById('wonwayColorB').style.visibility = "visible";
	document.getElementById('wonwayColorB').style.position = "relative";	
	document.getElementById('executiveColorA').style.visibility = "hidden";
	document.getElementById('executiveColorA').style.position = "absolute";
	document.getElementById('executiveColorB').style.visibility = "hidden";
	document.getElementById('executiveColorB').style.position = "absolute";
}
function showExecutive() {
	//HIDE WON-WAY COLOR OPTIONS, SHOW EXECUTIVE OPTIONS
	document.getElementById('executiveColorA').style.visibility = "visible";
	document.getElementById('executiveColorA').style.position = "relative";	
	document.getElementById('executiveColorB').style.visibility = "visible";
	document.getElementById('executiveColorB').style.position = "relative";	
	document.getElementById('wonwayColorA').style.visibility = "hidden";
	document.getElementById('wonwayColorA').style.position = "absolute";
	document.getElementById('wonwayColorB').style.visibility = "hidden";
	document.getElementById('wonwayColorB').style.position = "absolute";
}
function highlightCurrent(selectionID) {
	//MAKE EVERYTHING BUT THE ONE I ASK FOR GRAY
	document.getElementById('optionExecutiveA').style.color = "#999999";
	document.getElementById('optionExecutiveB').style.color = "#999999";
	document.getElementById('optionExecutiveC').style.color = "#999999";
	document.getElementById('optionExecutiveD').style.color = "#999999";
	document.getElementById('optionWonWayA').style.color = "#999999";
	document.getElementById('optionWonWayB').style.color = "#999999";
	document.getElementById('optionWonWayC').style.color = "#999999";
	document.getElementById('optionWonWayD').style.color = "#999999";
	document.getElementById(selectionID).style.color = "#009053";
}
function showAll() {
	document.getElementById('formTasselColorA').style.visibility = "visible";
	document.getElementById('formTasselColorA').style.position = "relative";
	document.getElementById('formTasselColorB').style.visibility = "visible";
	document.getElementById('formTasselColorB').style.position = "relative";
	document.getElementById('formGownSizeA').style.visibility = "visible";
	document.getElementById('formGownSizeA').style.position = "relative";
	document.getElementById('formGownSizeB').style.visibility = "visible";
	document.getElementById('formGownSizeB').style.position = "relative";
	document.getElementById('formGeneralQtyA').style.visibility = "hidden";
	document.getElementById('formGeneralQtyA').style.position = "absolute";
	document.getElementById('formGeneralQtyB').style.visibility = "hidden";
	document.getElementById('formGeneralQtyB').style.position = "absolute";
}
function showGown() {
	document.getElementById('formTasselColorA').style.visibility = "hidden";
	document.getElementById('formTasselColorA').style.position = "absolute";
	document.getElementById('formTasselColorB').style.visibility = "hidden";
	document.getElementById('formTasselColorB').style.position = "absolute";
	document.getElementById('formGownSizeA').style.visibility = "visible";
	document.getElementById('formGownSizeA').style.position = "relative";
	document.getElementById('formGownSizeB').style.visibility = "visible";
	document.getElementById('formGownSizeB').style.position = "relative";
	document.getElementById('formGeneralQtyA').style.visibility = "hidden";
	document.getElementById('formGeneralQtyA').style.position = "absolute";
	document.getElementById('formGeneralQtyB').style.visibility = "hidden";
	document.getElementById('formGeneralQtyB').style.position = "absolute";
}
function showCapTassel() {
	document.getElementById('formTasselColorA').style.visibility = "visible";
	document.getElementById('formTasselColorA').style.position = "relative";
	document.getElementById('formTasselColorB').style.visibility = "visible";
	document.getElementById('formTasselColorB').style.position = "relative";
	document.getElementById('formGownSizeA').style.visibility = "hidden";
	document.getElementById('formGownSizeA').style.position = "absolute";
	document.getElementById('formGownSizeB').style.visibility = "hidden";
	document.getElementById('formGownSizeB').style.position = "absolute";
	document.getElementById('formGeneralQtyA').style.visibility = "visible";
	document.getElementById('formGeneralQtyA').style.position = "relative";
	document.getElementById('formGeneralQtyB').style.visibility = "visible";
	document.getElementById('formGeneralQtyB').style.position = "relative";
}
function showCap() {
	document.getElementById('formTasselColorA').style.visibility = "hidden";
	document.getElementById('formTasselColorA').style.position = "absolute";
	document.getElementById('formTasselColorB').style.visibility = "hidden";
	document.getElementById('formTasselColorB').style.position = "absolute";
	document.getElementById('formGownSizeA').style.visibility = "hidden";
	document.getElementById('formGownSizeA').style.position = "absolute";
	document.getElementById('formGownSizeB').style.visibility = "hidden";
	document.getElementById('formGownSizeB').style.position = "absolute";
	document.getElementById('formGeneralQtyA').style.visibility = "visible";
	document.getElementById('formGeneralQtyA').style.position = "relative";
	document.getElementById('formGeneralQtyB').style.visibility = "visible";
	document.getElementById('formGeneralQtyB').style.position = "relative";
}
