(function(){
	window.addEvent('domready', function(){
		
		// set flag for enabled JS for CSS 
		$$('body')[0].removeClass('noJs');
		
		// // move #wrapper down when superbanner ad is displayed
		// if ($('wallpaper_oben')) $('wrapper').setStyle('marginTop','90px');
		
		// blur on inputs (for IE)
		$each($$('.inputTxt'),function(item){
			item.addEvent('focus',function(){
				this.addClass('focus');
			});
			item.addEvent('blur',function(){
				this.removeClass('focus');
			});
		});
		
	});
})();
