  dojo.require("dojox.widget.FisheyeLite");
  
  dojo.addOnLoad(function(){      
    dojo.query("div.imgButtons").forEach(function(n){
      new dojox.widget.FisheyeLite({
        properties: {
          top:-10
        }
      },n);
    });
  });

function getContact() {
	  dojo.xhrGet({
		    url: "/ajax/getRegistrationForm",
		    load: function(response, ioArgs){
		      dojo.byId("context").innerHTML = response;
		      return response;
		    },
		    handleAs: "text"
		  });
}
