// Current Page Reference
// copyright Stephen Chapman, 1st Jan 2005
// you may copy this function but please keep the copyright notice with it
function menucurrent(deze) {
	if (document.getElementById(deze)!=null) {
		if (document.getElementById(deze).className == 'top') {
			document.getElementById(deze).className += ' current_top';
		}
		else {
			document.getElementById(deze).className += ' current_top_parent';
		}
	}
}

