jQuery(function($){
	$('.gravatar').each(function() {
		var item = $(this);  
		item.attr('src', item.attr('rel'));
	});
});