window.addEvent('domready', function() {
	
	var myEffect = new Fx.Morph('site', {
    duration: '800',
    transition: Fx.Transitions.Sine.easeOut
});
 
myEffect.start({
    'opacity': [0, 1],
	'backgroundColor':'#fff' // Morphs the 'height' style from 10px to 100px.
});
});
