I see that your homepage still has this:
<div id="BeltingeButton" onclick="location.href=('Beltinge/index.shtml')"></div>
<div id="SwalecliffeButton" onclick="location.href=('Swalecliffe/index.shtml')"></div>
You should duplicate links with <a href="">, for instance:
<div id="BeltingeButton" onclick="location.href=('Beltinge/index.shtml')"><a href="Beltinge/index.shtml"></a></div>
<div id="SwalecliffeButton" onclick="location.href=('Swalecliffe/index.shtml')"><a href="Swalecliffe/index.shtml"></a></div>