window.addEvent('domready',function() {

	var fm = $('flash_message_wrapper');
	var fx = new Fx.Morph(fm, {duration: 500, transition: Fx.Transitions.Quart.easeOut});
	if (fm)
	{	
		fx.set({
			'height': 0
		});
		fx.start({
			'background-color': '#fff'
		}).chain(function(){
			this.start.delay(500, this, {
				'background-color': '#00CADE',
				'height': 25
			});
		}).chain(function() {
			this.start.delay(500, this, {
				'background-color':'#A3D42A'
			});
		}).chain(function() {
			this.start.delay(0, this, {
				'background-color': '#00CADE'
			});
		}).chain(function() {
			this.start.delay(4000, this, {
				'height': 0
			});
		}).chain(function() {
			
		});
		
		fm.addEvent('click',function(e){
			fx.cancel();
			fx.start({
				'height': 0
			});
			e.stop();
		});
	}
	
	
});
