Um ...
you've got this loading in your <head> section:```
<script type="text/javascript" src="includes/modules/pages/gallery/jscript_galleria.classic.js"></script>
<script type="text/javascript" src="includes/modules/pages/gallery/jscript_galleria.js"></script>
<script type="text/javascript" src="includes/modules/pages/gallery/jscript_jquery.min.js"></script>
and then in your define-page content you're RE-loading all of that all over again! Why? My first guess is that you've got a clash and probably getting "function already exists" errors in the javascript engine
<!-- bof define_gallery -->
[B]<script src="http://notoriousarc.com/includes/modules/pages/gallery/jscript_jquery.min.js"></script>
<script src="http://notoriousarc.com/includes/modules/pages/gallery/jscript_galleria.js"></script>
<script>Galleria.loadTheme('http://notoriousarc.com/includes/modules/pages/gallery/jscript_galleria.classic.js');</script>
[/B]<div class="images"><img src="images/bullit1.jpg"><img src="images/bullit.jpg"></div>
<script>$('.images').galleria();</script>
<!-- eof define_gallery -->