
$(function() {
    $('.tooltip').tooltip({
        track: true,
        delay: 0,
        showURL: false,
        top: -40,
        left: 10,
        fade: 250
    });

    $(".listaPerfilClientes li").css({ backgroundPosition: '0% 0%' });

    $(".listaPerfilClientes li:not(.txt) a").hover(
    function() {$(this).parent("li").animate({ backgroundPosition: '(0% 100%)' }, 300);
    }, 
    function() { $(this).parent("li").animate({ backgroundPosition: '(0% 0%)' }, 300);});
});

	
function pop(url,w,h,s){var oW=window.open(url,'popup','width='+w+',height='+h+',directories=0,location=0,menubar=0,resizable=1,scrollbars='+s+',status=0,toolbar=0,marginleft=0,margintop=0,left=0,top=0');}
