How to collapse listview

How to collapse listview

Hi there, 

I have a multi-page template. On the homepage I have a listview which is closed when the homepage is initially displayed. The following code is in my homepage:
  1.            <div data-role="collapsible" data-collapsed="true" data-mini="true">
  2.                 <h4>Options</h4>
  3.                 <ul id="options" data-role="listview" data-mini="true">
  4.                     <li><a href="#adddate">Add Date</a></li>
  5.                     <li><a href="#removedate">Remove Date</a></li>
  6.                 </ul>
  7.             </div>
When I select Add Date and go to adddate page. I add dates on this page. This adddate page has a link like this 
  1. <a href="#home" data-icon="gear" class="btn ui-btn-right">Home</a>
 which takes user back to homepage. But when I click on this like and homepage is displayed with listview open.  I don't know how to close this listview before displaying homepage. 

Any ideas.

Joe