Internal multipage links, some work, some don't

Internal multipage links, some work, some don't

  1. <div data-role="page" id="fourexampleone">
  2.    <div data-role="header">
  3.       <h1>
  4.          Example: Strings
  5.       </h1>
  6.       <div data-role="navbar" data-iconpos="top">
  7.          <ul>
  8.             <li>
  9.                <a href="#myPanel" data-icon="grid">
  10.                   Navigation
  11.                </a>
  12.             </li>
  13.             <li>
  14.                <a href="#pageone" data-icon="home">
  15.                   Home
  16.                </a>
  17.             </li>
  18.             <li>
  19.                <a href="#" data-icon="search">
  20.                   Search 
  21.                </a>
  22.             </li>
  23.          </ul>
  24.       </div>
  25.    </div>
  26.    <div data-role="main" class="ui-content">
  27.       <div id="wrapper">
  28.          <h1>
  29.             Try it here
  30.          </h1>
  31.          <form id="code" action="#" method="post">
  32.             <div>
  33.                <label for="source">
  34.                   Source Code:
  35.                </label>
  36.                <textarea cols="40" rows="10" name="source" id="source">
  37.                   import java.lang.*; class TryMe{ public static void main(String args[]){ System.out.println("This is awesome"); } } 
  38.                </textarea>
  39.             </div>
  40.             <div>
  41.                <label for="input">
  42.                   Input: 
  43.                   <span class="description">
  44.                      (Data that will be given to the program on the stdin.)
  45.                   </span>
  46.                </label>
  47.                <textarea cols="40" rows="3" name="input" id="input">
  48.                </textarea>
  49.             </div>
  50.             <div>
  51.                <input type="submit" name="submit" value="Submit" />
  52.             </div>
  53.          </form>
  54.          <div id="response">
  55.             <div class="meta">
  56.             </div>
  57.             <div class="output">
  58.             </div>
  59.          </div>
  60.       </div>
  61.       <div data-role="footer" data-position="fixed">
  62.          <div data-role="navbar">
  63.             <ul>
  64.                <li>
  65.                   <a href="#sectionfoursix" data-transition="slide" data-icon="arrow-l">
  66.                      Back
  67.                   </a>
  68.                </li>
  69.                <li>
  70.                   <a href="#fourexample2" data-transition="slide" data-icon="arrow-r">
  71.                      Example Two
  72.                   </a>
  73.                </li>
  74.             </ul>
  75.             <div>
  76.                Thanks
  77.             </div>
  78.          </div>
  79.       </div>
  80.    </div>
I have a single index file all my sites content is linked through the data-role="page" function. When I open these links in my browser, some work and some don't I can't figure out why 
I hope its ok to post code here... The link to this page works perfect but linking to the next page(example two) does not work and no others after it will work. any ideas?

Example: Strings

Try it here

Thanks