$('#anchToImg > a').each(function() {
var $this = $(this),
$parent = $(this).parent(),
$image = $(document.createElement('img')),
url = $(this).attr('href');
$image.load(function() {
$this.remove();
$(this).appendTo($parent);
}).attr('src', url);
});
Внутренний документ готов
Редактировать: для добавления изображений в другие div
$('#anchToImg > a').each(function(e) {
var $this = $(this),
$parent = $(this).parent(),
$image = $(document.createElement('img')),
url = $(this).attr('href'),
$thediv = $('#my' + (e+1));
$image.load(function() {
$this.remove();
$(this).appendTo($thediv);
}).attr('src', url);
});