The header/logo link in the top left of the theme is borken. A mouseover shows "<?=$base_path?>" rather than the base url (ie:www.drupal.org).

Fix is:

/path/to/themes/friendsforever/page.tpl.php

change:
<a href="<?=$base_path?>" title="<?php print t('Home') ?>">

to:
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">