function startGalleryLIST9234() {
if(window.galleryLIST9234) {
try {
var myGalleryLIST9234 = new gallery($(‘myGalleryLIST9234’), {
timed:false,
showArrows: true,
showCarousel: false,
embedLinks:true,

lightbox:true
});
var mylightbox = new LightboxSmoothgallery();
} catch(error){
window.setTimeout(“startGalleryLIST9234();”,2500);
}
} else {
window.galleryLIST9234=true;
if(this.ie) {
window.setTimeout(“startGalleryLIST9234();”,3000);
} else {
window.setTimeout(“startGalleryLIST9234();”,100);
}
}
}
window.onDomReady(startGalleryLIST9234);

00