$(document).ready(function () {

	$("#inhoud img:not(.ajax-loader)").load(function () {
		$(this).wrap(function () {
			return '<span class="' + $(this).attr('class') + ' rounded-img" style="background:url(' + $(this).attr('src') + ') no-repeat center center; display: block; background-size: 100%; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
		});
		$(this).css("opacity", "0");
	});
	
});
