Because you are loading in HTML content to the page after lightbox has initialized, you need to hard code the onclick function to your links on the external pages. For example, wherever you have something like this:
Code:
<a href="/images/Dinner/pic550/1024.jpg" rel="lightbox[TMT Dinner]"><img src="/images/Dinner/pic200/1024.jpg" border="0"></a>
Make it look like so:
Code:
<a href="/images/Dinner/pic550/1024.jpg" onclick="myLightbox.start(this); return false;" rel="lightbox[TMT Dinner]"><img src="/images/Dinner/pic200/1024.jpg" border="0"></a>
Bookmarks