    $(function() { 
		    setInterval("rotateImages()", 4000);
			$('#slides').show();
            $("#newsSection").accordion({ header: "h3", fillspace: true, clearStyle: true});
	        $("#newsSection").accordion("activate", -1);
			var collapsible = $('#newsSection').accordion('option', 'collapsible');		
			$('#newsSection').accordion('option', 'collapsible', true);
	  });
	
	// voor slideshow op homepage
        function rotateImages() {
            var oCurPhoto = $('#photoShow div.current');
            var oNxtPhoto = oCurPhoto.next();
            if (oNxtPhoto.length == 0)
                oNxtPhoto = $('#photoShow div:first');

            oCurPhoto.removeClass('current').addClass('previous');
            oNxtPhoto.css({ opacity: 0.0 }).addClass('current').animate({ opacity: 1.0 }, 1000,
                function() {
                    oCurPhoto.removeClass('previous');
                });
        }
		
	
	
