Here is an example of the problem however, if you go directly to the navigation page, it loads instantly.
I presume that this is caused because I am creating the foundation top-bar in a separate html file and calling using this script.
<script>
$(function(){
$("#includeHeader").load("Navigation.html");
});
</script>
and then, right after the opening body tag
<div class="fixed shadow" id="includeHeader"></div>
Is there a better way to call an external file, or should I just copy the navigation code separately into each HTML page? (seems kinda stupid for when I want to make changes though).