// Gift Certificate Price
function calcNewGiftCardTotalPrice() {
	// get items
	var packageCost = document.getElementById('packageCost').innerHTML; // package
	var plateCost = document.getElementById('plateCost').innerHTML; // plates
	var confettiCost = document.getElementById('confettiCost').innerHTML; // confetti
	var cardCost = document.getElementById('cardCost').innerHTML; // card
	var shippingCost = document.getElementById('shippingCost').innerHTML; // shipping
	
	// calc total
	var giftCertificateTotal = parseFloat(packageCost) + parseFloat(plateCost) + parseFloat(confettiCost) + parseFloat(shippingCost) + parseFloat(cardCost);
	giftCertificateTotal = giftCertificateTotal.toFixed(2)
	// change inner html on giftCertificateTotal
	document.getElementById('giftCertificateTotal').innerHTML = giftCertificateTotal;
}
function setGiftCardItemPrice(divId, itemPrice, itemQuantity) {
	document.getElementById(divId).innerHTML = itemPrice*itemQuantity;
	calcNewGiftCardTotalPrice();
}
