$().ready(function(){
	$('form.OrderForm #newAddressForm .txt').focus(function(){
		$('form.OrderForm input[type="radio"][name="addressId"][value="0"]').attr('checked', true);
	});
	$('form.OrderForm #newPhoneForm input').focus(function(){
		$('form.OrderForm input[type="radio"][name="phoneId"][value="0"]').attr('checked', true);
	});
	$('form.CustomPizzaForm input[type="checkbox"]:enabled').click(function(){
		countPrice();
	});
	$('form.CustomPizzaForm select[name="type"]').change(function(){
		countPrice();
	});
});

function countPrice()
{
	base = $('form.CustomPizzaForm select[name="type"]').val() == 'large' ? 171 : 71;
	ln = $('form.CustomPizzaForm input[type="checkbox"]:enabled:checked').size();
	cpu = $('form.CustomPizzaForm select[name="type"]').val() == 'large' ? 20 : 10;
	$('#customPrice').text(base + (cpu * ln));
}
