1. <head>
  2.    <Script>
  3.        $.mobile.loadPage( FirstPage.html, { showLoadMsg: false } );
  4.    </Script>
  5.  
  6.     <script type="text/javascript" language="javascript">
  7.         $("#start").live("pagecreate", function () {
  8.             setTimeout(function () {                
  9.                $.mobile.changePage("FirstPage.html") }, 5000);
  10.         });
  11.     </script>
  12.  
  13.  
  14. </head>
  15. <body>
  16.     <div data-role="page" id="start" >
  17.     <img src="Css/Images/start1.jpg" height="100%" width="100%" />
  18.     </div>
  19. </body>