if (document.getElementById('qualityExecutive').checked == true) {
	showExecutive();
}
if (document.getElementById('qualityWonWay').checked == true) {
	showWonway();
}
if (document.getElementById('qualityHoodOnly').checked == true) {
	showHoodOnly();
}


function showWonway() {
	document.getElementById('radioColorWonWay').style.color = "#009053";
	document.getElementById('radioColorExecutive').style.color = "#999999";
	document.getElementById('radioColorHoodOnly').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('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('outfitOptions').style.visibility = "hidden";
	document.getElementById('outfitOptions').style.position = "absolute";	
}