var mootools = new Class({
	options: {
		// options here
	},
	initialize: function(options){
		this.setOptions(options);
		
	},
	authors:function(elements,prefix) {
		$$(elements).each(function(el){
			var id = el.getProperty('id');
			if(id!='' && id!=null) {
				var target = id.replace(prefix,'');
				if($(target)) {
					var thisSlide = new Fx.Slide(target).hide();
					el.addEvents({
						'click':function(e) {
							e.stop();
							thisSlide.toggle();
						}
					});
				}
			}
		});
	}
});

mootools.implement(new Options, new Events);

window.addEvent('domready', function() {
	var Tips1 = new Tips('.voetnoot-popup');
	var moo = new mootools();
	moo.authors('.Linkplaatje','toggler-');
});

