if (document.getElementById('qualityExecutive').checked == true) {
	showExecutive();
}
if (document.getElementById('qualityWonWay').checked == true) {
	showWonway();
}
if (document.getElementById('qualityCompleteExecutive').checked == true) {
	showCompleteExecutive();
}
if (document.getElementById('qualityCompleteWonWay').checked == true) {
	showCompleteWonWay();
}
if (document.getElementById('qualityHoodOnly').checked == true) {
	showHoodOnly();
}
if (document.getElementById('qualityHoodWonWay').checked == true) {
	showHoodWonWay();
}

function showWonway() {
	document.getElementById('radioColorWonWay').style.color = "#009053";
	document.getElementById('radioColorExecutive').style.color = "#999999";
	document.getElementById('radioColorHoodOnly').style.color = "#999999";
	document.getElementById('radioCompleteExecutive').style.color = "#999999";
	document.getElementById('radioCompleteWonWay').style.color = "#999999";
	document.getElementById('radioColorHoodWonWay').style.color = "#999999";
	document.getElementById('outfitOptions').style.visibility = "visible";
	document.getElementById('outfitOptions').style.position = "relative";	
}
function showCompleteExecutive() {
	document.getElementById('radioColorWonWay').style.color = "#999999";
	document.getElementById('radioColorExecutive').style.color = "#999999";
	document.getElementById('radioColorHoodOnly').style.color = "#999999";
	document.getElementById('radioCompleteExecutive').style.color = "#009053";
	document.getElementById('radioCompleteWonWay').style.color = "#999999";
	document.getElementById('radioColorHoodWonWay').style.color = "#999999";
	document.getElementById('outfitOptions').style.visibility = "visible";
	document.getElementById('outfitOptions').style.position = "relative";	
}
function showCompleteWonWay() {
	document.getElementById('radioColorWonWay').style.color = "#999999";
	document.getElementById('radioColorExecutive').style.color = "#999999";
	document.getElementById('radioColorHoodOnly').style.color = "#999999";
	document.getElementById('radioCompleteExecutive').style.color = "#999999";
	document.getElementById('radioCompleteWonWay').style.color = "#009053";
	document.getElementById('radioColorHoodWonWay').style.color = "#999999";
	document.getElementById('outfitOptions').style.visibility = "visible";
	document.getElementById('outfitOptions').style.position = "relative";	
}

function showExecutive() {
	document.getElementById('radioColorWonWay').style.color = "#999999";
	document.getElementById('radioColorExecutive').style.color = "#009053";
	document.getElementById('radioColorHoodOnly').style.color = "#999999";
	document.getElementById('radioCompleteExecutive').style.color = "#999999";
	document.getElementById('radioCompleteWonWay').style.color = "#999999";
	document.getElementById('radioColorHoodWonWay').style.color = "#999999";
	document.getElementById('outfitOptions').style.visibility = "visible";
	document.getElementById('outfitOptions').style.position = "relative";	
}

function showHoodOnly() {
	document.getElementById('radioColorWonWay').style.color = "#999999";
	document.getElementById('radioColorExecutive').style.color = "#999999";
	document.getElementById('radioColorHoodOnly').style.color = "#009053";
	document.getElementById('radioCompleteExecutive').style.color = "#999999";
	document.getElementById('radioCompleteWonWay').style.color = "#999999";
	document.getElementById('radioColorHoodWonWay').style.color = "#999999";
	document.getElementById('outfitOptions').style.visibility = "hidden";
	document.getElementById('outfitOptions').style.position = "absolute";	
}
function showHoodWonWay() {
	document.getElementById('radioColorWonWay').style.color = "#999999";
	document.getElementById('radioColorExecutive').style.color = "#999999";
	document.getElementById('radioColorHoodOnly').style.color = "#999999";
	document.getElementById('radioCompleteExecutive').style.color = "#999999";
	document.getElementById('radioCompleteWonWay').style.color = "#999999";
	document.getElementById('radioColorHoodWonWay').style.color = "#009053";
	document.getElementById('outfitOptions').style.visibility = "hidden";
	document.getElementById('outfitOptions').style.position = "absolute";	
}
