$(function(){
	$('.js-contentBlock img').each(function(){
		if(
			$(this).attr('src').match(/assets\/components/) ||
			$(this).attr('src').match(/http:\/\//)
		) { return; }
		
		if($(this).parent().attr('href')) {
			$(this).parent().addClass('js-gallery');
		} else {
			var href = $(this).attr('src');
			$(this).wrap('<a class="js-gallery" href="' + href + '"></a>');
		}
	});
	$("a.js-gallery").fancybox();
});
