$$(".btns_principal").each(
	function(s, index){
		s.onclick = function(){
			s.siblings().each(
				function(t, index){
					t.firstDescendant().src = "imagenes/" + t.rel + "_off.png";
				}
			)
			s.firstDescendant().src = "imagenes/" + s.rel + "_on.png";
			new Ajax.Updater("col_izq",this.href,{method: "get",evalScripts: true, onComplete: function(){prueba()}});
			return false;
		}
	}
);
var prueba = function (){
	$$(".btn_paginador").each(
		function(s, index){
			s.onclick = function(){
				new Ajax.Updater("col_izq",this.href,{method: "get",evalScripts: true, onComplete: function(){prueba()}});
				return false;
			}
		}
	);
}
prueba();