var IE6 = false; // via conditional comment auf true
var THIS; 		 // globaler Selector
var ONWIND = new Class({
	initialize: function() {
		// alert('hello world');	
	}
});
window.addEvents({
	'domready':function(){
		THIS = new ONWIND();
		if (IE6) {
			//DD_belatedPNG.fix('#container'); // argument is a CSS selector
		}
	}
});
