jQuery(function($) {
    $('.page-block').find('img').each(function(index, el) {
            if($(this).attr('title')) { 
            	var title = '';
            	title = $(this).attr('title');
            	var img = jQuery("<p>").append($(this).eq(0).clone()).html();
                $(this).replaceWith('<div class="img-title">' + img + '<span>' + title + '</span></div>');
            }
    });
});
