
// <![CDATA[
    // Automagically load Lightbox on Page Load - by Bramus! (http://www.bram.us/)
    // Code modded from http://www.huddletogether.com/forum/comments.php?DiscussionID=1269&page=1#Item_0
    function autoFireLightbox() {
        //Check if location.hash matches a lightbox-anchor. If so, trigger popup of image.
        setTimeout(function() {
            if($('NYE').rel.indexOf('lightbox')!=-1) {
                myLightbox.start($('NYE'));
            }},
            250
        );
    }
    
    Event.observe(window, 'load', autoFireLightbox, false);
 
// ]]>

