(function($){
	$.fn.pobierzDaneDoradcy = function(){
		return this.each(function(i){
			$(this).find('.advisorFeed-name').text( imieINazwiskoDoradcy );
			$(this).find('.advisorFeed-phone').text( telefonDoradcy );
			$(this).find('.advisorFeed-email').text( emailDoradcy ).attr('href','mailto:'+emailDoradcy );
		});
	}
})(jQuery);
	
$(document).ready(function(){
	$('.advisorFeed').pobierzDaneDoradcy();
});
