(function($){
	jQuery.fn.absolutize = function() {
		this.each( function() {
			$(this).css("top", $(this).offset().top);
			$(this).css("left", $(this).offset().left);
		});
		return this.each( function(){
			$(this).css("position", "absolute");
		});
	}
})(jQuery);
