window.addEvent('domready', function () {
	
	var active = null;
	
	$$('#menu ul > li').addEvent('click', function (e) {
		
		/*var t = this.getElement('ul');
		var x = this.getParent().getParent().getParent().get('id');
		if(t == null || x == 'toplevel') {
			e.stopPropagation();
		} else {
			e.stop();
		}
		
		if(active != null) {
			if(!active.hasChild(this)) {
				active.setStyle('display','none');
				var top = active.getParent().getParent();
				if(top.get('tag') == 'ul' && top.get('id') != 'toplevel') {
					top.setStyle('display','none');
				}
			}
		}
		var style = (t.getStyle('display') == 'none' ? 'block' : 'none'); 
		t.setStyle('display',style);
		active = t;*/

	});
	

	$('q').addEvent('focus', function (e) {
		if(this.get('value') == 'Zoeken... ') {
			this.set('value','');
			this.setStyle('color','#000000');
		} else {
			this.setStyle('color','#000000');
		}
	});
	
});

