$(document).ready(function() {
    $('#services li').mouseenter(function(){
        $('img.on', this).show();
        $('img.off', this).hide();
        $('p', this).addClass('negro');
    });
    $('#services li').mouseleave(function(){
        $('img.on', this).hide();
        $('img.off', this).show();
        $('p', this).removeClass('negro');
    });

     
});

$(document).ready(function() {
    $('#botones li').mouseenter(function(){
        $('img.on', this).show();
        $('img.off', this).hide();
       
    });
    $('#botones li').mouseleave(function(){
        $('img.on', this).hide();
        $('img.off', this).show();
        
    });

     
});

$(document).ready(function() {
    $('#nuevo li.no-menu').mouseenter(function(){
        $('img.on', this).show();
        $('img.off', this).hide();
       
    });
    $('#nuevo li.no-menu').mouseleave(function(){
        $('img.on', this).hide();
        $('img.off', this).show();
        
    });

     
});

$(document).ready(function() {
 $('#uber_uns li').mouseenter(function(){
        $('img.on', this).show();
        $('img.off', this).hide();
       
    });
    $('#uber_uns li').mouseleave(function(){
        $('img.on', this).hide();
        $('img.off', this).show();
        
    });

     
});
$(document).ready(function() {
 $('.btn li').mouseenter(function(){
        $('img.on', this).show();
        $('img.off', this).hide();
       
    });
    $('.btn li').mouseleave(function(){
        $('img.on', this).hide();
        $('img.off', this).show();
        
    });

     
});



$(document).ready(function() {
    $('#people-map area').mouseenter(function(){
        href = $(this).attr('href');
        $(href+'-img.on').show();   
    });
    $('#people-map area').mouseleave(function(){
        href = $(this).attr('href');
        $(href+'-img.on').hide();   
    });
    $('#people-map area').click(function(){
        href = $(this).attr('href');
        if (href == '#richard' || href == '#martin')
            window.location = "http://www.internetnatives.com/uberuns/beratung";
        
        else if( href == '#jp') 
               
              
                window.location = "http://www.internetnatives.com/uberuns/design";

        else if (href == '#joung' || href == '#ivan')
               window.location = "http://www.internetnatives.com/uberuns/programmierung";

          return false;
          
    });

});







