
    
    <div id="footer">
    
    <div class="footerContent">
    
       <?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block to the TOP of your page BEFORE anything else. */
  require_once "/home/brookspr/public_html/cmsAdmin/lib/viewer_functions.php";

  list($real_estate_tipsRecords, $real_estate_tipsMetaData) = getRecords(array(
    'tableName'   => 'real_estate_tips',
    'where'       => whereRecordNumberInUrl(1),
    'limit'       => '1',
  ));
  $real_estate_tipsRecord = @$real_estate_tipsRecords[0]; // get first record

?>


    <h3><?php echo $real_estate_tipsRecord['title'] ?></h3>
      
      
   



      <?php echo $real_estate_tipsRecord['content'] ?>
      
    <?php if (!$real_estate_tipsRecord): ?>
     <p> No record found!</p>
    <?php endif ?>
  


    
    
    </div>
    
     <div class="footerContent">
     
     <?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block to the TOP of your page BEFORE anything else. */
  require_once "/home/brookspr/public_html/cmsAdmin/lib/viewer_functions.php";

  list($footer_find_propertiesRecords, $footer_find_propertiesMetaData) = getRecords(array(
    'tableName'   => 'footer_find_properties',
    'where'       => whereRecordNumberInUrl(1),
    'limit'       => '1',
  ));
  $footer_find_propertiesRecord = @$footer_find_propertiesRecords[0]; // get first record

?>
     
     

  
        <a href="/properties/"><h3><?php echo $footer_find_propertiesRecord['title'] ?></h3></a>
        <?php echo $footer_find_propertiesRecord['content'] ?>
        
   
        
          <?php if (!$footer_find_propertiesRecord): ?>
     <p> No record found!</p>
    <?php endif ?>
    
    
    </div>
    
     <div class="footerContent">
     
     
     
     <?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block to the TOP of your page BEFORE anything else. */
  require_once "/home/brookspr/public_html/cmsAdmin/lib/viewer_functions.php";

  list($footer_contactRecords, $footer_contactMetaData) = getRecords(array(
    'tableName'   => 'footer_contact',
    'where'       => whereRecordNumberInUrl(1),
    'limit'       => '1',
  ));
  $footer_contactRecord = @$footer_contactRecords[0]; // get first record

?>

  

   <a href="/contact-us/"><h3><?php echo $footer_contactRecord['name'] ?></h3></a>
    
    <?php echo $footer_contactRecord['content'] ?>
    
    
  
    
      <?php if (!$footer_contactRecord): ?>
     <p> No record found!</p>
    <?php endif ?>
    
    
    </div>
    	<br clear="all" />
    
    </div><!-- end footer -->
    
    <div id="copyright">
    <p class="copyright">&copy; 2008. HJ Brooks, LLC All Rights Reserved    
    </p>
    
    <p class="privacy"><a href="/privacy-policy/">Privacy Policy</a></p>
    </div><!-- end copyright -->