$(document).ready(function() {
	$('a.nudge').hover(function() { //mouse in
		$(this).animate({ color: '#aaf' }, 400);
	}, function() { //mouse out
		$(this).animate({ color: '#eee' }, 400);
	});
	
	$(".wrapper .img img").reflect();
});