$(document).ready(function(){
	$('.project-article-content').each(function(){
		if ($(this).find('.ngg-gallery-thumbnail')){
			$(this).find('.ngg-clear').remove();
			var width = $(this).find('.ngg-gallery-thumbnail img:eq(0)').attr('width');
			var height = $(this).find('.ngg-gallery-thumbnail img:eq(0)').attr('height');
			$(this).find('.ngg-galleryoverview').css({'height': height + 15 + 'px', 'width': width + 15 + 'px', 'float': 'left', 'margin': '0 1.5em 1em 0'});
			$(this).find('.ngg-galleryoverview').cycle();
		}
	});
});
