You can use the 'manual' descriptions for that, ex:
Code:
<script type="text/javascript">
//Optional, manual description for particular pictures inside album
//Syntax: albumid.desc[index]="Picture description here"
//eg: myvacation.desc[2]="This is description for the 3rd picture in the album"
//eg: myvacation.desc[6]="This is description for the 7th picture in the album"
;(function(id){
for(var i = 0; i < id.images.length; ++i){
id.desc[i] = id.images[i][1].replace(/\.[^\.]+$/, '');
}
})(myvacation);
</script>
Where myvacation is the albumid for that album.
Bookmarks