function sandwich_calc(t){	

	t.subroll.value = 0;
	t.hardroll.value = 0;
	t.smslicedbread.value = 0;
	t.lgslicedbread.value = 0;

	if (t.bologna.checked){
		t.subroll.value = parseInt(t.subroll.value) + 620;
		t.hardroll.value = parseInt(t.hardroll.value) + 475;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 361;
	}
	if (t.ham.checked){
		t.subroll.value = parseInt(t.subroll.value) + 378;
		t.hardroll.value = parseInt(t.hardroll.value) + 290;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 220;
	}
	if (t.salami.checked){
		t.subroll.value = parseInt(t.subroll.value) + 825;
		t.hardroll.value = parseInt(t.hardroll.value) + 633;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 481;
	}
	if (t.turkey.checked){
		t.subroll.value = parseInt(t.subroll.value) + 213;
		t.hardroll.value = parseInt(t.hardroll.value) + 164;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 125;
	}
	if (t.roastbeef.checked){
		t.subroll.value = parseInt(t.subroll.value) + 564;
		t.hardroll.value = parseInt(t.hardroll.value) + 433;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 329;
	}
	if (t.tuna.checked){
		t.subroll.value = parseInt(t.subroll.value) + 610;
		t.hardroll.value = parseInt(t.hardroll.value) + 468;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 356;
	}
	if (t.cheese.checked){
		t.subroll.value = parseInt(t.subroll.value) + 150;
		t.hardroll.value = parseInt(t.hardroll.value) + 100;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 75;
	}
	if (t.extrameat.checked){
		t.subroll.value = parseInt(t.subroll.value) + 200;
		t.hardroll.value = parseInt(t.hardroll.value) + 150;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 100;
	}
	if (t.mayo.checked){
		t.subroll.value = parseInt(t.subroll.value) + 300;
		t.hardroll.value = parseInt(t.hardroll.value) + 200;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 100;
	}
	if (t.salad_dressing.checked){
		t.subroll.value = parseInt(t.subroll.value) + 120;
		t.hardroll.value = parseInt(t.hardroll.value) + 90;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 70;
	}
	if (t.pepperoni.checked){
		t.subroll.value = parseInt(t.subroll.value) + 140;
		t.hardroll.value = parseInt(t.hardroll.value) + 120;
		t.smslicedbread.value = parseInt(t.smslicedbread.value) + 100;
	}
	
	
	t.subroll.value = parseInt(t.subroll.value) + 400;
	t.hardroll.value = parseInt(t.hardroll.value) + 190;
	t.smslicedbread.value = parseInt(t.smslicedbread.value) + 140;
	t.lgslicedbread.value = parseInt(t.smslicedbread.value) + 80;


  return true;
}
