function clone_customer_information(){
	$j('#customer_billing_first_name').val($j('#customer_first_name').val());
	$j('#customer_billing_last_name').val($j('#customer_last_name').val());
	$j('#customer_billing_street_address').val($j('#customer_street_address').val());
	$j('#customer_billing_city').val($j('#customer_city').val());
	$j('#customer_billing_country_id').val($j('#customer_country_id').val());
	$j('#customer_billing_state_id').val($j('#customer_state_id').val());
	$j('#customer_billing_postal_code').val($j('#customer_postal_code').val());
	$j('#customer_billing_phone_number').val($j('#customer_phone_number').val());
}