Okay, let's get the eye-rolling exasperation out of the way...

Believe it or not, I do have a brain...and I've done this with a previous install of RSGallery2.
Here's my existing code of gallery.php, which displays Random Images at the bottom of the page:
<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php
global $ItemId;
//Show My Galleries link
if ($rsgConfig->get('show_mygalleries')) {
echo $this->showRsgHeader();
}
//show search box
$this->showSearchBox();
//Show introduction text
?>
<div class="intro_text"><?php echo $rsgConfig->get('intro_text');?></div>
<?php
//Show limitbox
if( $this->pageNav ):
?>
<div class="rsg2-pagenav-limitbox">
<?php echo $this->getGalleryLimitBox(); ?>
</div>
<?php
endif;
foreach( $this->kids as $kid ):
?>
<div class="rsg_galleryblock">
<div class="rsg2-galleryList-status"><?php echo $kid->status;?></div>
<div class="rsg2-galleryList-thumb">
<?php echo $kid->thumbHTML; ?>
</div>
<div class="rsg2-galleryList-text">
<?php echo $kid->galleryName;?>
<span class='rsg2-galleryList-newImages'>
<sup><?php if( $this->gallery->hasNewImages() ) echo _RSGALLERY_NEW; ?></sup>
</span>
<?php echo $this->_showGalleryDetails( $kid );?>
<div class="rsg2-galleryList-description"><?php echo $kid->description;?>
</div>
</div>
<div class="rsg_sub_url_single">
<?php $this->_subGalleryList( $kid ); ?>
</div>
</div>
<?php
endforeach;
?>
<div class="rsg2-clr"></div>
<?php
if($this->gallery->id == 0){
// show random and latest only in the top gallery
//Show block with random images
$this->showImages("random", 5);
//Show block with latest images
$this->showImages("latest", 5);
}
if( $this->pageNav ):
?>
<div class="rsg2-pageNav">
<?php echo $this->getGalleryPageLinks(); ?>
<br/>
<?php echo $this->getGalleryPagesCounter(); ?>
</div>
<div class='rsg2-clr'> </div>
<?php endif; ?>
And here is the change I am making, moving the block of code that Ronald highlighted and placing it directly beneath the //Show introduction text div. When I upload this it breaks my entire main gallery page, displaying only the Random Images block and none of the galleries. What am I doing wrong?
<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php
global $ItemId;
//Show My Galleries link
if ($rsgConfig->get('show_mygalleries')) {
echo $this->showRsgHeader();
}
//show search box
$this->showSearchBox();
//Show introduction text
?>
<div class="intro_text"><?php echo $rsgConfig->get('intro_text');?></div>
<?php
if($this->gallery->id == 0){
// show random and latest only in the top gallery
//Show block with random images
$this->showImages("random", 5);
//Show block with latest images
$this->showImages("latest", 5);
}
if( $this->pageNav ):
?>
<?php
//Show limitbox
if( $this->pageNav ):
?>
<div class="rsg2-pagenav-limitbox">
<?php echo $this->getGalleryLimitBox(); ?>
</div>
<?php
endif;
foreach( $this->kids as $kid ):
?>
<div class="rsg_galleryblock">
<div class="rsg2-galleryList-status"><?php echo $kid->status;?></div>
<div class="rsg2-galleryList-thumb">
<?php echo $kid->thumbHTML; ?>
</div>
<div class="rsg2-galleryList-text">
<?php echo $kid->galleryName;?>
<span class='rsg2-galleryList-newImages'>
<sup><?php if( $this->gallery->hasNewImages() ) echo _RSGALLERY_NEW; ?></sup>
</span>
<?php echo $this->_showGalleryDetails( $kid );?>
<div class="rsg2-galleryList-description"><?php echo $kid->description;?>
</div>
</div>
<div class="rsg_sub_url_single">
<?php $this->_subGalleryList( $kid ); ?>
</div>
</div>
<?php
endforeach;
?>
<div class="rsg2-clr"></div>
<div class="rsg2-pageNav">
<?php echo $this->getGalleryPageLinks(); ?>
<br/>
<?php echo $this->getGalleryPagesCounter(); ?>
</div>
<div class='rsg2-clr'> </div>
<?php endif; ?>