window.addEvent('domready', function() {
	var el = $('myElement');
	var anotherEl2 = $('anotherElement2');
	var anotherEl1 = $('anotherElement1');
	var morph = new Fx.Morph('anotherElement2');
	var morph1 = new Fx.Morph('anotherElement1');
	$('dn-colb').addEvent('mouseover', function(e) {
		e.stop();
		anotherEl2.morph('.myClass');
	});
	$('dn-colb').addEvent('mouseout', function(e) {
		e.stop();
		anotherEl2.morph('div.demoElement');
	});	
	$('dn-colc').addEvent('mouseover', function(e) {
		e.stop();
		anotherEl1.morph('.myClass2');
	});
	$('dn-colc').addEvent('mouseout', function(e) {
		e.stop();
		anotherEl1.morph('div.demoElement');
	});
});
