$(document).ready(function(){
 $(".button0").hover(function(){
 $(".button0 img")
 // first jump 
 .animate({top:"-13px"}, 200).animate({top:"-7px"}, 200)
 // second jump
 .animate({top:"-10px"}, 100).animate({top:"-7px"}, 100)
 // the last jump
 .animate({top:"-9px"}, 100).animate({top:"-7px"}, 100);
 });
}); 

$(document).ready(function(){
 $(".button1").hover(function(){
 $(".button1 img")
 // first jump 
 .animate({top:"-13px"}, 200).animate({top:"-7px"}, 200)
 // second jump
 .animate({top:"-10px"}, 100).animate({top:"-7px"}, 100)
 // the last jump
 .animate({top:"-9px"}, 100).animate({top:"-7px"}, 100);
 });
});

$(document).ready(function(){
 $(".button2").hover(function(){
 $(".button2 img")
 // first jump 
 .animate({top:"-13px"}, 200).animate({top:"-7px"}, 200)
 // second jump
 .animate({top:"-10px"}, 100).animate({top:"-7px"}, 100)
 // the last jump
 .animate({top:"-9px"}, 100).animate({top:"-7px"}, 100);
 });
});

$(document).ready(function(){
 $(".button3").hover(function(){
 $(".button3 img")
 // first jump 
 .animate({top:"-13px"}, 200).animate({top:"-7px"}, 200)
 // second jump
 .animate({top:"-10px"}, 100).animate({top:"-7px"}, 100)
 // the last jump
 .animate({top:"-9px"}, 100).animate({top:"-7px"}, 100);
 });
});  