It looks like you are using relative URL's, either fully resolve your URL's or use the ~ character to get to the root of your site e.g.
Your links look like this:
<a href="test.html">Test</a>
Change to:
<a href="http://www.mydomain.com/test.html">Test</a>
or
<
asp:HyperLink ID="HyperLink1" NavigateUrl="~/test.html" runat="server">Test</asp:HyperLink>
Do the same with your images as well.
--------------------------------------------------------
Don't forget to click "Mark as Answer" on the post(s) that helped you.
Scott ASP.net blog