$(document).ready(function(){
	$("#button_container a").mouseenter(function(){
		var i = $("#button_container a").index(this);
		$("img.off", this).hide();
		$("img.on", this).show();
		$("p", this).css("color","white");
		$(".text-container").hide();
		$(".text-container:eq("+ i +")").show();
		$("#fondos img").hide();
		$("#fondos img:eq("+ i +")").show();
	}).mouseleave(function(){
		$("img.on", this).hide();
		$("img.off", this).show();
		$("p", this).css("color","gray");
	});
});

