/**
 * Project: Mootools Klasse
 * Author: Christian Boehnke & Paul Meyer Klickadeeler Mediendesign GbR <info [AT] klickadeeler [DOT] de>
 * Date: April 12th, 2009
 * File: MonitorScrolling_yc.js
 * Version: 1.0
 */

// mootools version 1.2.2 wird minimal benoetigt
if (MooTools && MooTools.version >= '1.2.2') {

	// container klasse fuer die kd klassen
	var kd = new Class({
		
		// implementiere
		'Implements': [Events],
		
		// sichtbarkeit von elementen
		'ViewControl': null,
		
		// modale fenster
		'ModalWin': null,
		
		// lightbox
		'LightBox': null,
		
		// tooltips
		'Tip': null
		
	});

}
