$(document).ready(function() {
	$('a.nudgeBottom').hover(function() { //mouse in
		$(this).animate({ paddingBottom: '3px' },200);
	}, function() { //mouse out
		$(this).animate({ paddingBottom: 0 }, 300);
	});
});

$(document).ready(function() {
	$('a.nudgeLeft').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '6px' },200);
	}, function() { //mouse out
		$(this).animate({ paddingLeft: 0 }, 300);
	});
});

