Alpha 4 problems

Alpha 4 problems

Hi guys,
I'm working on a mobile application and I use PhoneGap & jquery mobile A4 and I use a WEB SQL database (to reduce network usage).
Here is a list of issues:
1) Footer: 
I'd like to keep the same footer and I use the data-id to replicate it in every page. It worked in alpha 3 but now the footer isn't replicated automatically anymore.

2) GET parameters:
I tried to use $.mobile.changePage specified at  http://jquerymobile.com/demos/1.0a4/#docs/api/methods.html to pass GET parameters to the new page but it doesn't work.
Which is the best way to pass parameters (eg. I have a list of items and then when I click one of them I need to change page passing the its id in order to display its details)?
  1. $.mobile.changePage({
        url: "#newpage",
    type: "get",
    data: $("form#current_form").serialize()
    });
3) Click event fired twice (issue reported by other people)

Many thanks in advance for your help.

Mauro