Navbar Title jumps from left justification to center when rendering index page

For my navbar on my index.html page only the title is temporarily to the left and then jumps to the center (I assume after the javascript is loaded). How do I delay the rendering of the page until after everything is loaded to avoid this from happening?

<!-- Top Navbar-->
<div class="navbar">
  <div class="navbar-inner">
    <div class="center sliding">Page Title</div>
    <div class="right">
      <!-- Right link contains only icon - additional "icon-only" class--><a href="#" class="link icon-only open-panel"> <i class="icon icon-bars"></i></a>
    </div>
  </div>
</div>