//*****************************************************************************
//Copyright (C) 2007 Headwaters co.,ltd. All Right Reserved. 
//【プロジェクト名】OYAIKU
//【ファイル名】list.js
//【概要】list.phpスクリプト
//【更新履歴】
//バージョン｜　 日付 　｜　担当者氏名　｜更新内容
//－－－－－＋－－－－－＋－－－－－－－＋－－－－－－－－－－－－－－－－－－
//0.7.0     ｜2007/10/01｜木村学　　　　｜新規作成
//*****************************************************************************
//初期化処理
var resizeFunc = new Array();
window.onload = function () {
    for (i in document.images) {
        imgtmp = document.images[i];
        if (imgtmp.className != "list_img") continue ;
        myTim = setInterval("resizeImage(" + i + ")", 100);
        resizeFunc[i + ""] = myTim;
    }
}
function resizeImage(i)
{
    max_width  = 120;
    max_height =  90;
    imgtmp = document.images[i];
    if (imgtmp == null) return;
    newImg = new Image();
    newImg.src = imgtmp.src;
    if (newImg.width != 0) {
        percent = Math.min(max_width / newImg.width, 
                  Math.min(max_height / newImg.height, 1)); //最大サイズとの比率計算
        imgtmp.width  = newImg.width  * percent; //縮小後の幅を算出
        imgtmp.style.display = ""; //画像を表示
        clearInterval(resizeFunc[i + ""]);
    }
}

