﻿/* ***************************

	mylord
	imgsize get
	/shoptopics/index.html
	
**************************** */


$(function(){
		$(".img_area").each(function(){
			var setHeight = $(this).innerHeight();
			if(setHeight < 74){
				var pHeight = Math.round((74 - setHeight)/2);
				$(this).css({'padding-top': pHeight,'padding-bottom':pHeight});
			}
		});
})


