document.observe('dom:loaded', function() {

    $$('.fotoalbum-thumb-holder').each(function(el) {
        el.observe('click', function(e, linkEl) {
            $(el.parentNode).getElementsBySelector('.fotoalbum-thumb').each(function(imgEl) {
                imgEl.setStyle({ visibility: 'visible' });
            });
            $(el).getElementsBySelector('.fotoalbum-thumb').each(function(imgEl) {
                imgEl.setStyle({ visibility: 'hidden' });
                $('fotoalbumDetail').update('<img src="' + el.href + '">');
                $('fotoalbumDescription').update(el.title);
            });
            el.blur();
        });
    });
    $($$('.fotoalbum-thumb-holder').first()).simulate('click');
});
