window.addEvent('domready', function() {
	
	var offerEl = $('offer');
	
	// Again we are able to create a morph instance
	var morph = new Fx.Morph('offer');

	// Or we just use Element.morph
	$('morphEffect').addEvent('click', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		offerEl.morph('.offeropen');
	});
	
});
