$(document).ready(function() {
	
    $('DIV.home-actie:gt(0)').hide();
    $('DIV.home-actie:first').addClass('first');
    $('DIV.home-actie:last').addClass('last');
    var cur = $('DIV.home-actie:first');

    $(function() {
        setInterval(function(){
          cur.fadeOut( 5000 );
          if ( cur.hasClass('last') ){
                          cur = $('DIV.home-actie:first');
          } else {
                          cur = cur.next();
          }
                          cur.fadeIn( 5000 );
          }
                          , 10000 );
    });



	
		})
