$(document).ready(function() {
	//$('#borde').height($(document).height());
	
	function doSomething() {
    alert("I'm done resizing for the moment");
};

var resizeTimer;
$(window).resize(function() {
    clearTimeout(resizeTimer);
    resizeTimer = setTimeout(doSomething, 100);
});
	
	//$(window).resize(function() {
		//var ancho = $(document).width() - 9;
		//$('#borde').width(ancho - 8);
 		//alert(ancho); 
		});
	
	});


