$(document).ready(function(){ 
  $('.action').hover(function(){
	$(".action_image", this).stop().animate({bottom:'55px'},{queue:false,duration:160});
	  }, function() {
	$(".action_image", this).stop().animate({bottom:'0px'},{queue:false,duration:160});
  });
});
