Hi,
The menu is in the inc/topnavigation.inc.php - there are 3 areas - depending if you are on the overview, thumb or image page.
in the index.php is a part
<?php
if (!$default_is_fullscreen) {
echo '<tr>';
include (dirname(__FILE__) . "/inc/topnavigation.inc.php");
echo '</tr>';
}
?>
where the navigation is included. If you remove this the topnavigation will be gone! But then you still have the problem that the Javascript does not find the id's is is looking for!
you can either creates this id's by adding the menu items to your menu but I think thas not enought because there are about 10 links changed (image numer, counts links, commentscounter ....).
you can disable some of the features in the topnavigation you don't need first.
If you use the html or html_side navigation it should work already - with dhtml I think you have to modify the cmotiongallery.inc.php as well.
But this is a bad file ... it generated javascript on the fly - and this a lot!
from line 400 to 526 are different areas where the whole content of the page is changed by ajax -
I recommend you use Firefox as browser - then enter the page and check the javascript console for errors - it tells you which id is not found - then remove this from the code!
removing the bottom part is easy - most can be done in the config.php - the powered by has to be removed manually.
Have fun with that
.
/Michael