

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

}); 

/*
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');
	});
	
	
 
});   */
