$(document).ready(function() {

$('#intro-slideshow img').hide().css('z-index', '1');

$('#intro-slideshow img').each(function (i) {
    $(this).delay(i*6000).fadeIn(2500);
});

});
