}
?>
			</div>
		</div>	

		<div class="container">
			<div class="top-heading">
				Following
			</div>	
			<div style="text-align:left;width:96%;margin:0 auto;">
				<?php 
#####################################################
/**
 * Display all of the people the loggeed in user is following
 */
foreach ($Friends->getFollowing() as $following) {
    ?>
				
					<div class="feed-box-title" style="margin-bottom:6px;">
						<a href="profile.php?id=<?php 
    echo $following["user"];
    ?>
" style="margin:0"><img src="<?php 
    echo $following["thumbnail"];
    ?>
" /></a>
						<a href="profile.php?id=<?php 
    echo $following["user"];
    ?>
"><?php 
    echo $following["first_name"] . ' ' . $following["last_name"];