Hola.
Buen, eso que hay en la página quie dices, no es un script. Es simplemente un frame con una tabla que contiene imágenes.
mira te pongo un ejemplo:
tienes una pagina 'index.htm' asi:
Código:
<frameset rows="100,*">
<frame src="menu.htm">
<frame src="galeria1.htm" name="principal">
</frameset>
una página llamada 'menu.htm' así:
Código:
<table>
<tr>
<td>
<a href="galeria1.htm" target="principal">Galería 1</a>
</td>
<td>
<a href="galeria2.htm" target="principal">Galería 2</a>
</td>
<td>
<a href="galeria3.htm" target="principal">Galería 3</a>
</td>
</tr>
</table>
y unas páginas que serían iguales en estructura (galeria1.htm, galeria2.htm, galeria3.htm)
Código:
<table>
<tr>
<td><img src="foto1.jpg"></td>
<td><img src="foto2.jpg"></td>
<td><img src="foto3.jpg"></td>
<td><img src="foto4.jpg"></td>
<td><img src="foto5.jpg"></td>
<td><img src="foto6.jpg"></td>
<td><img src="foto7.jpg"></td>
<td><img src="foto8.jpg"></td>
<td><img src="foto9.jpg"></td>
<td><img src="foto10.jpg"></td>
</tr>
</table>
y con eso ya tienes tu galería. Sobra decir que así es un poco fea, así que le tienes que dar formato a tu gusto.
un saludo.