var tmtOut;
var tmtOut2;
$(document).ready(function() {
    
	
	$(".bubbleInfo").hover(
		function () {
			$(this).find(".trigger").animate({
				"opacity": "1"
			}, 1000);
			
			$(".popup").hide();
			$(this).find(".popup").fadeIn();
		}, 
		function () {
			$(this).find(".trigger").animate({
				"opacity": "0.5"
			}, 1000);
			
			$(this).find(".popup").hide();
		}
	);
        
    /*$(".galeriaClientes li img").hover(function() {
        $(this).animate({
            "opacity": 1
        },1000);
    }, function() {
        $(this).animate({
            "opacity": 0.5
        },1000);
    });*/
})
