jQuery('document').ready(function(){
	jQuery("div.stockistThumbnail").vAlign();
});

(function (jQuery) {
	jQuery.fn.vAlign = function(container) {
		return this.each(function(i){
			if(container == null) {
				container = 'div';
			}
			jQuery(this).html("<" + container + ">" + jQuery(this).html() + "</" + container + ">");
			var el = jQuery(this).children(container + ":first");
			var elh = jQuery(el).height(); //new element height
			var ph = jQuery(this).height(); //parent height
			var nh = (ph - elh) / 2; //new height to apply
			jQuery(el).css('margin-top', nh);
		});
	};
})(jQuery);
