I figured out a solution by tinkering around.
I read some where about a tag called and decided to take advantage of this tag since I don't use it for my photoblog entries. The auto-generated excerpt is 20 words long, which is just about perfect for what I intended.
I then made a new .php template (photologentries.php) with and any formatting (CSS etc..), to make the link I wrapped the MTExcerpt tag with a link, and used MTPermaLink to generate the URL. I'm a stickler for title's so I added MTEntryTitle to generate the mouse-over title.
Here's the code for the template:
CODE
<a href="<$MTEntryPermalink$>" title="<$MTEntryTitle$>"><$MTEntryExcerpt$></a>
Since I'm using .php to archive my templates, I could easilly include photologentries.php using a PHP include in my main blog easily.
CODE
<? include("photolog/recentphotos.php") ?>
End result is
here. I hope someone else can find this information useful