<!--

// ロールオーバー
function swImg(iName,str) {
		document.images[iName].src = str;
}


// プリロード１
count = 0;
data = new Array(
		"img/navi_btn_outline+.gif",  // ナビボタン・サービス概要
		"img/navi_btn_plan+.gif",  // ナビボタン・プラン紹介
		"img/navi_btn_function+.gif",  // ナビボタン・機能解説
		"img/navi_btn_price+.gif",  // ナビボタン・料金・機能表
		"img/navi_btn_top+.gif",  // ナビボタン・TOP
		"img/navi_btn2_reason+.gif",  //ナビ２ボタン・理由
		"img/navi_btn2_case+.gif",  //ナビ２ボタン・事例
		"img/navi_btn2_request+.gif",  //ナビ２ボタン・資料請求
		"img/navi_btn2_estimate+.gif",  //ナビ２ボタン・お見積もり
		"img/navi_btn2_order+.gif",  //ナビ２ボタン・お申し込み
		"img/top_web_title_btn+.gif",  //ヴァーチャルTOP・詳しく見る
		"img/price_bar_btn_option+.gif",  //料金プラン表・オプション料金
		"img/price_bar_btn_plan+.gif",  //料金プラン表・プラン料金・機能
		"img/price_btn_chart+.gif");  //料金プラン表・詳しく見る
prImg= new Array();
for (i=0; i<data.length; i++) {
		prImg[i] = new Image();
		prImg[i].src = data[i];
}

// プリロード２
function nextImg() {
		count++;
		count %= data.length;
		document.myIMG.src = data[count];
		status = count;
}

// -->
