$(document).ready(function(){
            $(".SKbutton").hover(function(){
                $(".SKbutton img")
                .animate({top:"-24px"}, 200).animate({top:"-18px"}, 200) // first jump
                .animate({top:"-21px"}, 100).animate({top:"-18px"}, 100) // second jump
                .animate({top:"-20px"}, 100).animate({top:"-18px"}, 100); // the last jump
            });
        });
