$(function() {
	$('.about-photo div.rounded').each(function() {
		var margin = ($(this).parent().width() - $(this).width()) / 2;
		$(this).css('margin-left',margin+'px');
	});
	$('.about-photo').cycle({timeout:5000});
});

