DeferedContent = Class.create({
  initialize: function() {
	var url = this.getAttribute('src');
	new Ajax.Updater(this, url);
  }
});

