window.addEvent('domready', function() {
	
	var anotherEl = $('bioDetails');
	
	// Again we are able to create a morph instance
	var morph = new Fx.Morph('bioDetails');
	
	// Or we just use Element.morph
	$('heartMorph').addEvent('click', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		anotherEl.morph('.bioWinMorph');
	});
	
	$('resetEfx').addEvent('click', function(e) {
		e.stop();
		// You need the same selector defined in the CSS-File
		anotherEl.morph('div.invisibleBio');
	});
});