// =============
// updated 2011/04
// =============

var nsMaxW = 45;
var nsMaxH = 50;
var nsW;
var nsH;
var nsRatioW;
var nsRatioH;

//newArea
$(document).ready(function(){

	//1つ目のnewSetにクラス名付加
	$(".newArea .newSet").eq(0).addClass("newSetFirst");

	//サムネイルのサイズ調整
	$(".newArea .newSet").each(function() {
		if ($(this).find(".thumb img").length == 0) {
			$(this).find(".thumb").remove();
		} else {
			nsW = $(this).find(".thumb img").width();
			nsH = $(this).find(".thumb img").height();
			nsRatioW = nsMaxW / nsW;
			nsRatioH = nsMaxH / nsH;
			if (nsRatioW<=1 || nsRatioH<=1) {
				if (nsRatioW < nsRatioH) {
					$(this).find(".thumb img").width(nsW * nsRatioW + "px").height(nsH * nsRatioW + "px");
				} else {
					$(this).find(".thumb img").width(nsW * nsRatioH + "px").height(nsH * nsRatioH + "px");
				}
			}
			$(this).find(".thumb").css("visibility", "visible");
		}
	});
});


