        $(document).ready(function(){
            
            $(".country-map").find('.tooltip').each(function(){
                $(this).live('hover', function(){
                    $(this).fadeIn(100, 1);
                },10);
            });
            
            $(".country-map").find('a').each(function(){
                if($(this).attr('class') != undefined){
                  //alert($(this).attr('class'));
                  $(this).tooltip({ effect: 'toggle', delay: 10});
                  $(this).hover(function(){
                     $(this).css({'color':'#ed1c24'}); 
                  }, function(){
                     $(this).css({'color':'#000'}); 
                  });
                }else{
                    $(this).css({'color':'000','font-weight':'normal'});
                }
            });
        });
