hola ke tal pues para hacer eso solo tienes ke kolokarlo en un script pa no complikarte mucho, por eso coloca estos codigos en tu pagina y tendras la galeria ke deseas.
mira es:
<script language="JavaScript1.1">
var photos=new Array();
var photoslink=new Array();
var textos=new Array() ;
var which=0;
var linkornot=0;
//aki koloka la ruta de tus imagenes
photos[0]="objetos/ang.jpg";
photos[1]="objetos/anti_virus.gif";
photos[2]="objetos/happy3.gif";
//texto de cada imagen ke kieras ke paresk
textos[0]="Ang";
textos[1]="antivirus";
textos[2]="borracho";
var preloadedimages=new Array();
for (i=0;i<photos.length;i++) {
preloadedimages=new Image();
preloadedimages.src=photos;
}
function applyeffect() {
if (document.all) {
photoslider.filters.revealTrans.Transition=Math.floor(Math.random()*23);
photoslider.filters.revealTrans.stop();
photoslider.filters.revealTrans.apply();
}
}
function playeffect() {
if (document.all)
photoslider.filters.revealTrans.play();
}
function keeptrack() {
window.status="Image "+(which+1)+" of "+photos.length;
}
function backward(){
if (which>0) {
which--;
applyeffect();
document.images.photoslider.src=photos;
if (document.all) { // IE;
document.getElementById('elTExto').innerText=textos;
} else { // Mozilla;
document.getElementById('elTExto').textContent=textos;
}
playeffect();
keeptrack();
}
}
function forward() {
if (which<photos.length-1) {
which++;
applyeffect();
document.images.photoslider.src=photos;
if (document.all) { // IE;
document.getElementById('elTExto').innerText=textos;
} else { // Mozilla;
document.getElementById('elTExto').textContent=textos;
}
playeffect();
keeptrack();
}
}
function transport() {
window.location=photoslink;
}
</script>
este script colocalo entre <head> y </head>
y ahora para publicar las imagenes coloca este codigo entre <body> y el </body>
de tu pagina:
<table border="0" cellspacing="0" cellpadding="0" width="34%">
<tr>
<td width="100%" colspan="2" height="22">
<center>
<script>
if (linkornot==1)
document.write('<a href="javascript:transport()">');
document.write('[img]'+photos[0]+'[/img]');
if (linkornot==1)
document.write('</a>')
</script>
</center>
</td>
</tr>
<tr>
<td colspan="2" align="center" id="elTExto">
El texto de la primera imagen</p>
</td>
</tr>
<tr>
<td width="50%" height="21">
<p align="left">[url="#"]Imagen anterior[/url]</p>
</td>
<td width="50%" height="21">
<p align="right">[url="#"]Imagen siguiente[/url]</p>
</td>
</tr>
</table>
y pues solo tendras ke cambiar el nombre y la ruta de tus imagenes espero te haya ayudado y servido caulker duda no dudes en comentarla.
unsaludo y suerte
adios.