$(document).ready(function(){
	$(".product img").each(
					   function(){
						   	ht = $(this).height();
							$(this).css("margin-top", 145 - ht/2 + "px" );
						   }
					   )
});
