
 window.addEvent('domready', function(){
	
	$('homepage-buttonportfolio_').addEvents({
		'mouseenter': function(){
				this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).morph({height: 60, width: 300});

		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).morph({height: 37, width: 98});
		}
	});
});
 
 
 window.addEvent('domready', function(){
	
	$('homepage-buttoncontact_').addEvents({
		'mouseenter': function(){
				this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).morph({height: 60, width: 270});

		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).morph({height: 37, width: 84});
		}
	});
});
 
 