 $(document).ready(function(){
	$(function(){
		// set global defaults for Accordion
		$.extend($.fn.Accordion.defaults, {
			showSpeed: 1000,
			hideSpeed: 200
		});

		var randomSector=Math.floor(Math.random()*3) /* number between 0 and 3 */

		// voor elke accordeon een nieuwe class!
		$('.Acc1').Accordion({
			active: randomSector,
			alwaysOpen: true,
			autoheight: true
		});
		
		$('.Acc2').Accordion({
			alwaysOpen: true,
			autoheight: true
		});
		
		$('.Acc3').Accordion({
			alwaysOpen: true,
			autoheight: true
		});
	});
 });
