	/*
	 * Добавление подписей к картинкам к постам
	 */

	$('.post').ready(function(){
	    $('.post img').each(function(){
	    
	        if (null != $(this).attr('title')) {
	            var title = $(this).attr('title');
	            
	            if (0 == title.length) {
	                return;
	            }
	            
				//$(this).before('<div style="border: 1px solid #ebebeb; padding: 4px 4px 20px 4px;">');
				//$(this).after('<div style="font-style: italic;">' + title + '</div>');
				
                $(this).css({
                    border: '1px solid #e3e3e3',
                    padding: '6px 6px 24px 6px',
					backgroundColor: '#ffffff',
					borderRadius: '2px',
                }).after('<div style="font-style: italic; margin-top: -22px; color: #222;">' + title + '</div>');
	        }
	    });
	});
