function muestraelemento(a,b){
	
	valores = Array("#999", "#868686", "#707070");
	
	$(".cajadestino").load("servicios-" + a + b +".html?"+Math.random(), "", function(){
		
		for(i=0; i<4; i++){
			for(j=0;j<3; j++){
				if(i==a && j==b){
					$("#caja"+i+j).animate({ backgroundColor:"#11a6ff"}, 500);
					$("#aumento"+i+j).animate({ opacity:0 }, 400, function(){});
				}else{
					$("#caja"+i+j).animate({ backgroundColor:valores[j]}, 500);	
					$("#aumento"+i+j).animate({ opacity:1 }, 400, function(){});
				}		
			}
		}
	});
}
