/**
 * @author dao
 * sweeping design
 */
Element.implement({
	bury: function(){
		if (this.getStyle('display') == 'none') return this;
		else return this.store('display', this.getStyle('display')).fade(0).setStyle('display', 'none');
	},
	disinter: function(){
		return this.setStyle('display', this.retrieve('display')).fade(1);
	}
});
