// JavaScript Document

// 初期設定
function firstInit () {
    imgArray = firstInit.arguments;
    overImg = new Array ();
    
    for (i=0; i<(imgArray.length); i++) {
        overImg[i] = new Image().src = imgArray[i];
    }
}

// ロールオーバー処理
function changeImages (imgId, imgSrc) {
    if (document.getElementById) {
        document.getElementById(imgId).src = imgSrc;
    }
}

// トップページランダムフォト
function mainPhoto () {
    // 設定（書きかえ箇所）
    var photoNum = 2; // フォト枚数
    photoAlt = new Array ('WEB制作のスコール・ジャパン・エルティーディー', 'WEB制作のスコール・ジャパン・エルティーディー'); // ALTテキスト
    // 設定終わり
    photoNo  = Math.floor (Math.random() * photoNum) + 1;
    var photoNo2 = photoNo - 1;
    if (photoNo < 10) {
        photoNo = "0" + photoNo;
    }
    document.write ("<div id=\"mainPhoto\"><img src=\"images/top_main" + photoNo + ".jpg\" width=\"700\" height=\"335\" alt=\"" + photoAlt[photoNo2] + "\" /></div>");
}