function imageCentering() {

var arr = jQuery(".ngg-gallery-thumbnail")
 jQuery.each(arr, function(){
        var ph = jQuery(this).height();
        var ih = jQuery('img',this).height();
        var th = jQuery('p',this).height();
        var pad = (ph-ih)/2 - (th / 2);
		jQuery('img',this).css({'margin-top':pad,'margin-bottom':pad});   });
}

function imageCenteringDL() {

var arr = jQuery(".gallery-item")
 jQuery.each(arr, function(){
        var ph = jQuery(this).height();
        var ih = jQuery('img',this).height();
        var th = jQuery('p',this).height();
        var pad = (ph-ih)/2 - (th / 2);
		jQuery('img',this).css({'margin-top':pad,'margin-bottom':pad});   });
}
