function autoFireLightbox() {
            //Check if location.hash matches a lightbox-anchor. If so, trigger popup of image.
            setTimeout(function() {
                    tTemp = "image001"
                if($(tTemp).rel.indexOf('lightbox')!=-1) {
                    myLightbox.start($(tTemp));
                }},
                250
            );
        }
//Event.observe(window, 'load', autoFireLightbox, false);

