/*
Dieses JavaScript blendet beim Anzeigen der Lightbox zwei zusätzliche
Pfeile ein.
*/

function navlinks_main_loop() {

    var $prevLink = jQuery("#prevLink");
    var $nextLink = jQuery("#nextLink");
    
    var $bottomNavPrev = jQuery("#bottomNavPrev");
    var $bottomNavNext = jQuery("#bottomNavNext");

    if ($prevLink.is(":visible")) {
        $bottomNavPrev.show();
    } else {
        $bottomNavPrev.hide();
    }
    
    if ($nextLink.is(":visible")) {
        $bottomNavNext.show();
    } else {
        $bottomNavNext.hide();
    }
    
    /* Hauptschleife neu starten */
    setTimeout("navlinks_main_loop()", 500);
}


jQuery(document).ready(function() {
    navlinks_main_loop();
});

