$('.news-content').find('img').clone().appendTo('.photo-gallery > .row').wrap('<div class="col-tt-3"><a href=""></a></div>');
$('.photo-gallery').each(function() {
var $this = $(this);
var url = $this.find('img').attr('src');
$this.find('img').parent().attr('href', url);
});
$('.news-content').find('img').clone().appendTo('.photo-gallery > .row').wrap('<div class="col-tt-3"><a href=""></a></div>');
$('.photo-gallery a').each(function() {
var $this = $(this);
var url = $this.find('img').attr('src');
$this.find('img').parent().attr('href', url);
});