Get Customer Shipping/Billing Address in Magento
<?php
$customerAddressID = Mage::getSingleton(‘customer/session’)->getCustomer()->getDefaultShipping();
if ($customerAddressID ){
$address = Mage::getModel(‘customer/address’)->load($customerAddressID );
}