

jQuery(window).load(function(){
	
	jQuery("img.wtgallery_list").each(function(){
		
		var imgheight = jQuery(this).height();
		var centermargin = (154-imgheight)/2;
		
		jQuery(this).css("padding-top",centermargin);
	
	});

});