window.addEvent('domready', function() {
	var el = $('myElement');
	
	//SECOND EXAMPLE
	var otherEl = $('RadarElement');
	
	$('heightEffect').addEvent('click', function(){
		otherEl.tween('height', 300);
		return false; // alternative syntax to stop the event
	});
	
	// We can also create an Fx.Tween instance and use a wrapper variable
	
	$('resetEffect').addEvent('click', function(e) {
		e.stop();
		otherEl.erase('style');
	});
	
});
