
function flashMapTrigger(trigger){
	
	var self = this;
	this.functionReturn = true;
	
	if(trigger == 'expand'){
	
		new Effect.Morph('toppflashto', {
			style: {
				height: '385px'
			}, 
			duration: 0.5,
			transition: Effect.Transitions.sinoidal
		});

	}
	
	if(trigger == 'close'){
		new Effect.Morph('toppflashto', {
			style: {
				height: '105px'
			},
			duration: 0.5,
			transition: Effect.Transitions.sinoidal
		});
	}
	
}


