that doesn't work as such
http://www.reeftalk.com/gallery/show...hp/cat/504.php is different to
http://www.reeftalk.com/gallery/showgallery.php/cat/504
What if you put this into your .htaccess file
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^showgallery/cat/([a-zA-Z0-9]*).php$ showgallery.php?cat=$1 [L,NC]
and try
http://www.reeftalk.com/gallery/showgallery/cat/504.php
There is no reason I can see why it wouldn't work, but I bet if you tried it you will come to that Home » Custom View page instead of Home » ReefTalk Gallery » Reefs yet type showgallery.php?cat=504 into the URL it will show the correct page. Or change the mod_rewrite to
RewriteRule ^showgallery/yadayada/([a-zA-Z0-9]*).php$ showgallery.php?cat=$1
and go to
http://www.reeftalk.com/gallery/show...dayada/504.php it will show the correct page!