function display_what(index){
	var ntpouches = document.getElementById('ntpouches');
	var ntnametags = document.getElementById('ntnametags');
	var ntnametags = document.getElementById('ntnametags');
	var pouchFade = document.getElementById('pouchFade');
	var lanyardFade = document.getElementById('lanyardFade');
	var pouchLanFade = document.getElementById('pouchLanFade');
		
	switch(index){
		// tags and pouches
		case 0: ntpouches.style.display = "block";
			ntnametags.style.display = "block";
			pouchFade.style.display = "none";
			lanyardFade.style.display = "none";
			pouchLanFade.style.display = "none";
			break;
	
		// tags only
		case 1: ntpouches.style.display = "none";
			ntnametags.style.display = "block";
			pouchFade.style.display = "none";
			lanyardFade.style.display = "none";
			pouchLanFade.style.display = "none";
			break;
		
		// pouches only
		case 2: ntpouches.style.display = "block";
			ntnametags.style.display = "none";
			pouchFade.style.display = "none";
			lanyardFade.style.display = "block";
			pouchLanFade.style.display = "block";
			document.getElementById("pouchButton[2]").checked = false;
			document.getElementById("pouchButton[3]").checked = false;
			document.getElementById("pouchButton[4]").checked = false;
			document.getElementById("pouchButton[5]").checked = false;
			break;
		
		// lanyards only
		case 3: ntpouches.style.display = "block";
			ntnametags.style.display = "none";
			pouchFade.style.display = "block";
			lanyardFade.style.display = "none";
			pouchLanFade.style.display = "block";
			document.getElementById("pouchButton[0]").checked = false;
			document.getElementById("pouchButton[1]").checked = false;
			document.getElementById("pouchButton[2]").checked = false;
			document.getElementById("pouchButton[3]").checked = false;
			break;
		default:
	}
}

function display_nametags(index){
	var threebyfive = document.getElementById('threebyfive');
	var fourbythree = document.getElementById('fourbythree');
	var threebytwo = document.getElementById('threebytwo');
	var pouchFade = document.getElementById('pouchFade');
	var lanyardFade = document.getElementById('lanyardFade');
	var pouchLanFade = document.getElementById('pouchLanFade');
	var bullFade = document.getElementById('bullFade');
	
	switch(index){
			
		case 0:	threebyfive.style.display = "none";
			fourbythree.style.display = "block";
			threebytwo.style.display = "none";
			pouchFade.style.display = "none";
			lanyardFade.style.display = "none";
			pouchLanFade.style.display = "none";
			bullFade.style.display = "none";
			break;
			
		case 1: threebyfive.style.display = "block";
			fourbythree.style.display = "none";
			threebytwo.style.display = "none";
			pouchFade.style.display = "none";
			lanyardFade.style.display = "none";
			pouchLanFade.style.display = "none";
			bullFade.style.display = "block";
			break;
			
		case 2: threebyfive.style.display = "none";
			fourbythree.style.display = "none";
			threebytwo.style.display = "block";
			pouchFade.style.display = "none";
			lanyardFade.style.display = "block";
			pouchLanFade.style.display = "block";
			bullFade.style.display = "block";
			break;
		default:
	}
}