All of your page links are imagebuttons which render out to code like this:
<input type="image" name="ctl00$BttRegistrazione0" id="ctl00_BttRegistrazione0" tabindex="53" src="../../Image/pulsanti/registrazione.jpg" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$BttRegistrazione0", "", false, "", "../../Registrati/", false, false))" style="border-width:0px;" />
As you can see there is no href there that google can follow so it can only see your homepage.
You should have proper <a href> tags in your navigation like this:
<a href="pagename.aspx"><img src="imagebutton.jpg" alt="page name"></a>
Or you can use <asp:HyperLink> and <asp:Image> if you prefer.
How are you generating this navigation at the moment?