jQuery(window).load(function() {
    jQuery('#imagecycle_latest').show().cycle({
        fx: 'fade',
        easing: 'easeInQuint',
        speed: '4000',
        timeout: '3000',
        delay: 2000,
        sync: true,
        random: false
    });
});

$(document).ready(function(){

    $("#content .fenster_schliessen").click(function(){
        $(this).parents("#content").animate({
            opacity: 'hide'
        }, "slow");
    });
    
});
