$(document).ready(function(){
    $(".button").hover(function(){
	        $(this).animate({top:"-18px"}, 100)
		},function(){
			$(this).animate({top:"0px"}, 100);
    });
}); 
