 <!--desde acá-->
		
			$(document).ready(function(){
		
			//Blur Links (Prevents Outline)
			$('a').click(function() {
        		this.blur();
        	});
		
			//Hide all item descriptions in the info box
			$("#infobox > div").css("display", "none");
		
			//Call in the info box
			$(".mas a").click(function(){
				$("#infobox").fadeIn();
				$("#fade_bg").fadeIn();
				return false;
			});
			
			
      		//Show description for selected item
			
			$("#uno a").click(function(){
				$("#info_uno").show();
			});

      		$("#dos a").click(function(){
				$("#info_dos").show();
			});
			
      		$("#tres a").click(function(){
				$("#info_tres").show();
			});
			
			$("#cuatro a").click(function(){
				$("#info_cuatro").show();
			});
			
			$("#cinco a").click(function(){
				$("#info_cinco").show();
			});
			
			$("#seis a").click(function(){
				$("#info_seis").show();
			});
			
			$("#siete a").click(function(){
				$("#info_siete").show();
			});
			
			$("#ocho a").click(function(){
				$("#info_ocho").show();
			});
						
			//Remove background, info box and hide all descriptions
			$("#fade_bg, .close").click(function(){
				$("#fade_bg").fadeOut();
				$("#infobox").fadeOut(function() {
					$("#infobox > div").css("display", "none");
				});
				return false;
			});
		
		}); 
			
		<!--hasta acá-->
