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

	$('shortcuts').addEvents({
		'click': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Expo.easeOut 
			}).tween('height', '190px');
		},

		'mouseleave': function(){
			this.set('tween', {}).tween('height', '29px');
		}

	});
});