window.addEvent('domready', function() {
		$('menuWoningen').addEvent('mouseover', function() {
			// Display the submenu and set the parent element to appear active,
			// which will be inherited by the submenu
			this.set('class', 'active');
			$$('#menuWoningen ul').set('class', 'show');
		});

		$('menuWoningen').addEvent('mouseout', function() {
			// Hide the submenu and strip the parent of its active class
			this.set('class', '');
			$$('#menuWoningen ul').set('class', 'hide');
		});
});