$(document).ready(function(){
	$('#updateTotals').click(function(){
		var cell = $('#updateTotalCell');
		var price = parseFloat($('#ctl00_tcContent_lblPrice').html().toString().replace(/\$|\,/g,''));
		var userInput = $('#ctl00_tcContent_txtQty').val();
		
		if (userInput == parseInt(userInput)) {
			var total = (price * userInput);
			cell.html('$'+total.toFixed(2));
		}
	});
});