// JavaScript Document
$(document).ready(function(){										 
	$('#headerLeftImage').cycle( { 
		random:1,
		delay: 2000,
		timeout: 8000 
	});
	$("#banner1").cycle({ 
		random:1,
		delay: 4000,		
		timeout: 8000
	});
	$("#banner2").cycle({ 
		random:1,
		delay: 6000,
		timeout: 8000
	});
	$("#banner3").cycle({ 
		random:1,
		delay: 8000,
		timeout: 8000
	});
});

function filterNewsYear(huidige_maand) {
		window.location.href= '/index.php?module=nieuws&filter_jaar='+document.getElementById('filter_jaar').value+'&filter_maand='+huidige_maand;
}

function filterNewsMonth(huidig_jaar) {
		window.location.href= '/index.php?module=nieuws&filter_jaar='+huidig_jaar+'&filter_maand='+document.getElementById('filter_maand').value;
}



