jQuery.fn.extend({
	ajusteAltura: function(options) {
		return this.each(function() {
			new jQuery.ajusteAltura(this);
		});
	}
});

jQuery.ajusteAltura = function(obj) {

    var altura_janela = $(document).height();
    
    $(obj).css("height", altura_janela + "px");
};

$(window).resize(function(){

        $(".sombra").ajusteAltura();

    });
