jQuery(function($){ 
	$('.blogcomment-gravatar').each(function() { var item = $(this); item.attr('src', item.attr('rel')); });
	$('.blogpost-content .code').hover(function() { $(this).addClass('codeHasFocus'); }, 
										function() { $(this).removeClass('codeHasFocus'); });
});
