// JavaScript Document
////    2008 Simon De Schoenmaeker
menu = function() {
	var path = location.pathname;
	if(path!=''){
	$('#navigatie li a[href$="' + path + '"]').parent().addClass("current");
	}
};

