$(document).ready(function() {

	// Ajustamos el tamaņo de las capas
	$(window).resize(function() {
		if($(window).width()>1280) {
			$("#contenedorInterior").width(1280);
		} else if($(window).width()>800) {
			$("#contenedorInterior").width('auto');
		} else {
			$("#contenedorInterior").width(790);
		}
	});
	
	$(window).resize();

});
