Sure!
You just have make 2 changes in different parts of your skin.
1. Presuming that you only display one item on your front page (using <%blog(templatename,1)%> ), you will want to have links to the older (and newer) photo's you posted. Insert these two snippets of code in the Main Index part of your skin so that links to the previous and next photo are shown: <%nextlink(previous photo,1)%> and <%prevlink(next photo,1)%>
2. In the Item Pages we will use some more sophisticated coding to only display links to next and prevuious items if those are really available: <%if(nextitem)%> <a href="<%nextlink%>" title="link to next photo"> <%nextitemtitle%> <%else%> <%endif%> and <%if(previtem)%> <a href="<%prevlink%>" title="link to previous photo"> <%previtemtitle%> <%else%> <%endif%> will display links for the next and previous photos.