$(document).ready(function() {
	$('.nudge').hover(function() { //mouse in
		$(this).animate({ paddingBottom: '20px'}, 400);
	}, function() { //mouse out
		$(this).animate({ paddingBottom: '7px'}, 400);
	});
});