$(document).ready(function(){
	//リスト
	$("div.itemBox a").hover(
		function(){
			$(this).parent().parent().css({"backgroundColor" : "#9df",
						 "cursor" : "pointer"});
		},
		function(){
			$(this).parent().parent().css({"backgroundColor" : "#fff",
						 "cursor" : "auto"});
		}
	);

	//画像サイズ調整
	$("div.itemBox a img").each(function(){
		setImageSize(this, 65, 100);
	});

});

//調整処理
function setImageSize(i, xmax, ymax) {
	if (i.width > xmax || i.height > ymax) {
		var scale = xmax/i.width;
		if (scale > ymax/i.height) scale = ymax/i.height;
		i.width  *= scale;
		i.height *= scale;
	}
}
