PHP Code:
<?php
$fileName = "galleries.txt";
mt_srand( (double) microtime() * 1000000 );
$a = file($fileName);
$randNum = mt_rand( 0, sizeof($a)-1 );
header( "Location: ". $a[$randNum] );
?>
Open up notepad and paste the above code into it. Save it as galleries.php.
Open up notepad and paste all your galleries into it. And make sure you only put one gallery per line. Save it as galleries.txt
http://site.com/gallery1.html
http://site.com/gallery3.html
http://site.com/gallery4.html
http://site.com/gallery5.html
etc.
Then just upload and you're done.