
window.onload = function() {
	new Effect.Morph('page-heading', {
	  style: {
	  paddingLeft: '0.5em'}, // CSS Properties
	  duration: 2 // Core Effect properties
	});
	new Effect.Morph('box1', {
	  style: {
	  	paddingTop: '0em',
	  	paddingLeft: '0em',
		opacity: '.9',
	  }, // CSS Properties
	  duration: 1.5 // Core Effect properties
	});
	new Effect.Morph('box2', {
	  style: {
	  	paddingTop: '0em',
		opacity: '.9',
	  }, // CSS Properties
	  duration: 2 // Core Effect properties
	});
	new Effect.Morph('box3', {
	  style: {
	  	paddingTop: '0em',
		opacity: '.9',
	  }, // CSS Properties
	  duration: 2.5 // Core Effect properties
	});
	}

