Hi Dennis,
What and where did you 'change description' in the admin folder?
For some reason the paths to the required files are all missing the 'photoGallery/' part of the path.
Your code for the gallery part (as written to the page html) looks like this:
<style type="text/css" media="all">
@import url("css/slimbox/slimbox.css");
@import url("css/common.css");
@import url("css/dark.css");
</style>
<script type="text/javascript" src="js/mootools-core.js"></script>
<script type="text/javascript" src="js/mootools-more.js"></script>
<script type="text/javascript" src="js/slimbox.js"></script>
<script type="text/javascript" src="js/gallery.js"></script>
whereas it should be showing the full relative path to the required files like:
<style type="text/css" media="all">
@import url("photoGallery/css/slimbox/slimbox.css");
@import url("photoGallery/css/common.css");
@import url("photoGallery/css/dark.css");
</style>
<script type="text/javascript" src="photoGallery/js/mootools-core.js"></script>
<script type="text/javascript" src="photoGallery/js/mootools-more.js"></script>
<script type="text/javascript" src="photoGallery/js/slimbox.js"></script>
<script type="text/javascript" src="photoGallery/js/gallery.js"></script>
Go to the Admin area of your gallery, select a gallery and then click on the 'Add to Site' menu item.
The code that it produces for you to include in your page should look something like this:
<?php
$pg_id = '1';
$pg_theme = 'dark';
include('/full/server/path/to/4riversusbc.com/photoGallery/galleries/ribbon_fullsize_lightbox/index.php');
?>
with the 'photoGallery' directory as part of the path. If it isn't, then you will need to check your set-up procedure. [I can't see how changing 10 to 5 in the javascript file could be responsible?]
In the meantime, to get your tournaments.php page working, you could try opening it in Dreamweaver and adding the 'photoGallery' directory to the include path.