jqm 1.1.1 shows address bar for every page transition in safari ios 5.x

jqm 1.1.1 shows address bar for every page transition in safari ios 5.x

I built a mobile app with 1.1.0 for iOS5.x safari (iphone) and the page links never caused the address bar to drop down.  The ajax worked great!  Everything worked pretty well until I tried 1.1.1.

Now with jqm 1.1.1 every page link to another local page causes the address bar to drop down.  Tested so far on an iphone 4 iOS 5.1 in safari.  These are just basic links going to another page in the same directory.  Sample page 1:

<!DOCTYPE html> 
<html> 
<head> 
<title>Page 1</title> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head> 
<body> 

<div data-role="page" id="page1" data-id="page1">

<div data-role="header">
<h1>Page 1</h1>
</div><!-- /header -->

<div data-role="content">
<p>Hello world</p>
<a href="page2.html">Go to Page 2</a>
</div><!-- /content -->

</div><!-- /page -->

</body>
</html>

Have any one else observed this?  Any fix?  Driving me crazy!  My clients will definitely not like the address bar dropping down on every link.

Thanks!