window.addEvent('domready', function() {
	var el = $('myElement');	
	var anotherEl = $('anotherElement');
	
	// Again we are able to create a morph instance
	var morph = new Fx.Morph('anotherElement');
	
	// Or we just use Element.morph
	$('CSSmorphEffect').addEvent('mouseover', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		anotherEl.morph('.myClass');
	});
	
		// Or we just use Element.morph
	$('CSSmorphEffect').addEvent('mouseout', function(e) {
		e.stop();
		anotherEl.morph('div.demoElement');
	});

});
