$(document).ready(function () {
	createLastUpdateText("#navLastUpdate");
	createFooter();
	heighlightLogos();
	init_go2top();
	
	/* to highlight table remarks in the table and in the "#opmerkingen" li's */
	function heighlightLogos() {
		$('td.Logos').hover(function() {
			$(this).toggleClass('LogosHover');
		}, function() {
			$(this).toggleClass('LogosHover');
		})
	};

});

