FullHeight = Class.create({
  initialize: function() {
	this.resize();
	var self = this;
	document.observe('Document:resize', function(){
		self.resize();
	});
  },
  resize: function(){
  	var d = $(this.parentNode).getDimensions();
  	this.style.height = d.height + 'px';
  }
});

