//init scrollers and other jquery stuff
jQuery(function($) {

    // animate beursaankondigingen scroller
    $('#ctl00_ctl08_g_6a7a9c51_7e1f_4e5d_9db4_a047f0e28e85_divBeursScroller').innerfade({
        animationtype: 'slide',
        speed: 300,
        timeout: 7000,
        type: 'sequence'
    });

    //animate news scroller
    $('#ctl00_ctl08_g_19facc9c_0176_4f51_bccd_478880d1cd91_divNewsScroller').innerfade({
        animationtype: 'slide',
        speed: 300,
        timeout: 7000,
        type: 'sequence'
    });

    //innerfade-items are hidden to prevent unsightly flash of unanimated content. now remove the hidden classes again
    $('#ctl00_ctl08_g_19facc9c_0176_4f51_bccd_478880d1cd91_divNewsScroller .hidden').removeClass('hidden');

    $('#ctl00_ctl08_g_6a7a9c51_7e1f_4e5d_9db4_a047f0e28e85_divBeursScroller .hidden').removeClass('hidden');


});
