$(document).ready(function()
{
	 $("[id$=txtQues403]").mask("999-999-9999? x99999");

	$('input[type=checkbox]').click(function (e)
	{
		updateCurPriceMsg()
	})
	updateCurPriceMsg()
})
function updateCurPriceMsg()
{
	var totalPrice = 0
	var selectedCount = $('input[type=checkbox]:checked').length
	if (selectedCount > 0)
	{
		var priceFor1 = $('#priceFor1').attr('value')

		if (selectedCount == 1)
		{
			totalPrice = priceFor1
		}else
		{
			totalPrice = priceFor1 * selectedCount - Number($('#discountFor' + selectedCount).attr('value'))
		}
	}

	$('#curPriceMsg').html( selectedCount + ' Book'
				+ (selectedCount > 1 ? 's' : '')
				+ ' for $'
				+ formatDec(totalPrice, 2)
				)
	$("#totalAmount").attr("value", totalPrice)


}