// JavaScript Document
$(document).ready(function() {
	$('img.nudge').hover(function() { //mouse in
		$(this).animate({ paddingBottom: '15px',opacity: '1.0',
 }, 400);
	}, function() { //mouse out
		$(this).animate({ paddingBottom: '0px',opacity: '0.5' }, 400);
	});

});

