Slideshow überdeckt Navigation?

nordi

Erfahrenes Mitglied
Hallo, ich hab ein kleines Problem auf meiner Seite. Ich habe eine FadeIn/FadeOut Slideshow von Bilder. Diese überdeckt aber komischerweise meine Navigationsleiste? Habe eigentlich alle z-index Werte sortiert - aber kein Effekt. Wäre nett, wenn ihr da mal drauf gucken könntet! Bin anscheinend blind auf den Augen ;) Hier der Link http://www.hckoelnwest.de/neu/

CSS Code der Slideshow:

HTML:
#slideshow {
    position:absolute;
	top:35px;
    height:100px;
	width:800px;
	z-index:0;
}

#slideshow IMG {
    position:absolute;
    top:0px;
    left:0px;
    z-index:0;
    opacity:0.0;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}

// JS Code für Slider

function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');


    var $sibs  = $active.siblings();
    var rndNum = Math.floor(Math.random() * $sibs.length );
    var $next  = $( $sibs[ rndNum ] );


    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 5000 );
});

Vielen Dank für Tipps!
 
Zurück