jQuery(document).ready(
	function() {
		
		jQuery('.welkom').hover(
			function () {
				jQuery(this).addClass('homehover');
			},
			function () {
				jQuery(this).removeClass('homehover');
			}
		);
		
		jQuery('.welkom').click(
			function () {
				window.location.pathname = 'index.php?page=' + jQuery(this).attr('id');
			}
		);
	}
);