$(document).ready(function(){

    // ----- ALL PAGES -----
    //$(".menu a").corner('6px');

    // ----- HOME PAGE -----
    $('#cycleBox').cycle({
        fx:     'scrollHorz',
        speed:  'slow',		
        timeout: 6000,
        pause: 	1,
		cleartype: true,
		cleartypeNoBg: true,
        pager:  '#cyclePager',
        pagerAnchorBuilder: function() {
            return '<a href="#" class="pagerImg">&nbsp;</a>';
        },
        after: replaceH2
    });
	$("#nieuws ul").cycle({
		fx: 'scrollDown',
        delay: 5,
        pause: true,
		cleartype: true,
		cleartypeNoBg: true

    });

    $("#cycleBox div").each(function(){
        $(this).fadeTo("0.1");
        $(this).show( function(){
            replaceH2();
            $(this).not("#cycleBox div:first").hide();
        });
    });

});


