function TestFunction(){
alert("Hello from Regatron!!!");
} 
function TestEventHandler(){
alert("You clicked the image");
}
window.addEvent('domready', function() {
  // Use of MooTools (http://mootools.net/)
  td=$E("#jsexample");
td.addEvents({
		click: function() {
			 fx = new Fx.Slide('jsexample');
			 fx.slideOut();
			 

		}
		
	    }
	 );
});


