window.addEvent('domready', function() {
	var anotherEl = $('anotherElement');
	var morph = new Fx.Morph('anotherElement');
	
	$('CSSmorphEffect').addEvent('mouseover', function(e) {
		e.stop();
		anotherEl.morph('.myClass');
	});
	
	$('CSSmorphEffect').addEvent('mouseout', function(e) {
		e.stop();
		anotherEl.morph('div.demoElement');
	});
	
	
	

});