window.addEvent('domready', function(){
	
	$('header').addEvents({
		mouseenter: function(){
			
			this.morph({
				'background-color': '#6ab3d8'
			});
			this.set('tween', {
				duration: 1500,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '530px');
		},
		mouseleave: function(){
			
			this.morph({
				backgroundColor: '#f2f2f2'
			});
			this.set('tween', {}).tween('height', '70px');
		}
	});

});

window.addEvent('domready',function() { new SmoothScroll({ duration: 3000 }); });
