// application main entry point
Ext.onReady(function() {
	var el = Ext.get('fruehbucher');
	var ho = {
		attr: 'color'
		,duration: 3
	};
	
	function sliderText(){
		el.slideIn('l',{duration: 5}).highlight('#D41718',ho).pause(2).slideOut('r',{duration: 5, callback: sliderText});
	}
	
	el.slideIn('l',{duration: 5}).highlight('#D41718',ho).pause(2).slideOut('r',{duration: 5, callback: sliderText});
}); // eo function onReady