In php.ini, allow_url_fopen must be turned off. If you are able, turn it on, or contact your host.
Alternatively, there are ways around this. If both scripts are on the same server, you could do something like:
<?php
$file = file_get_contents('bottom_menu.php');
eval($file);
?>
Depending on how you've configured your script.