jQuery(document).ready(function() {							
	jQuery('a.nudge').hover(function() { //mouse in
		jQuery(this).stop().animate({ paddingRight: '20px' }, 400);
	}, function() { //mouse out
		jQuery(this).stop().animate({ paddingRight: 0 }, 400);
	});
	
	jQuery('.thumbs a').hover(function() { //mouse in
		jQuery(this).stop().animate({ corner: '40px'  }, 1000);
	}, function() { //mouse out
		jQuery(this).stop().animate({ corner: '0px'  }, 1000);
	});
});
