1) Re. map, for a more precise marker location, in skin/ability/custom/addons/maps/maps.tpl
Replace...
Code:
Address : "{/literal}{$config.Company.location_zipcode}, {$config.Company.location_country}{literal}",
With...
Code:
Address : "your more exact location here",
You may be able to insert longitude/latitude values in their also. Might take a little experimenting with to get exactly right.
2) Re dropdown for static pages, in skin/ability/customer/main/pages.tpl
Replace...
Code:
<form style="float:right;">
<select onchange="select_go('parent',this,0)" class="chzn-select" style="width:180px;">
{foreach from=$pages_menu item=p name=page}
{if $p.show_in_menu eq 'Y'}
<option value="pages.php?pageid={$p.pageid}"{if $smarty.get.pageid eq $p.pageid} selected{/if}>{$p.title|amp}</option>
{/if}
{/foreach}
</select>
</form>
With...