window.addEvent('domready', function(){
if($('system-message')!=undefined)
	{
		var systemError = $('system-message');
		var fx = systemError.effects({duration: 1250, transition: Fx.Transitions.Quart.easeOut});
		fx.start({	}).chain(function() {	this.start.delay(3000, this, {'opacity': 0}); }).chain(function() {	systemError.style.display='none'; this.start.delay(0001, this, {'opacity': 1});});
	}		
}); 