$(document).ready(function(){

	$('#bouwfondsprojekty').change(
				function(){
					document.location = this.options[this.selectedIndex].value;		
				}	
	);

	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

});