function changeDelivery() {
	if($('#deliveryyes').is(':checked')) {
		$('#deliveryinfos').show();
		changeBilling();
	} else {
		$('#deliveryinfos').hide();
		$('#billinginfos').show();
	}
}

function changeBilling() {
	if($('#deliverysamebillingno').is(':checked')) {
		$('#billinginfos').show();
	} else {
		$('#billinginfos').hide();
	}
}

$(document).ready(function() {
	$('input[name=delivery]').click(changeDelivery);
	$('input[name=deliverysamebilling]').click(changeBilling);
	changeBilling();
	changeDelivery();
});
