$(document).ready(function(){
    //Animacion iconos botando
    $("#menu .ico").click(function(){
        $(this).fadeIn(220)
                .animate({top:"-=20px"},220)
                .animate({top:"+=20px"},220)
                .animate({top:"-=15px"},220)
                .animate({top:"+=15px"},220)
                .animate({top:"-=10px"},220)
                .animate({top:"+=10px"},220)
                .animate({top:"-=5px"},220)
                .animate({top:"+=5px"},220);
    });
});
