//イメージの事前読み込み
if(document.images) {
 var imgs = new Array();
 imgs[0] = new Image();  imgs[0].src = "00/image/00-00blank.gif";
 imgs[1] = new Image();  imgs[1].src = "00/image/00-00point.gif";

 imgs[31] = new Image();  imgs[31].src = "image_m/menu_f0_01.gif";
 imgs[32] = new Image();  imgs[32].src = "image_m/menu_f0_02.gif";
 imgs[33] = new Image();  imgs[33].src = "image_m/menu_f0_03.gif";
 imgs[34] = new Image();  imgs[34].src = "image_m/menu_f0_04.gif";
 imgs[35] = new Image();  imgs[35].src = "image_m/menu_f0_05.gif";
 imgs[36] = new Image();  imgs[36].src = "image_m/menu_f1_01.gif";
 imgs[37] = new Image();  imgs[37].src = "image_m/menu_f1_02.gif";
 imgs[38] = new Image();  imgs[38].src = "image_m/menu_f1_03.gif";
 imgs[39] = new Image();  imgs[39].src = "image_m/menu_f1_04.gif";
 imgs[40] = new Image();  imgs[40].src = "image_m/menu_f1_05.gif";

 imgs[61] = new Image();  imgs[61].src = "http://fez.jp/image_m/menu_f0_06.gif";
 imgs[62] = new Image();  imgs[62].src = "http://fez.jp/image_m/menu_f1_06.gif";


 }

function chgimg(id, imgname) {
 if(document.images) {
  if(imgs[imgname]) {
    document.images[id].src = imgs[imgname].src;
  }
  else {
    document.images[id].src = imgname;
  }
 }
}

function jump_h1() {window.location.replace("http://fez.jp/01/01-01.html");}
function jump_h2() {window.location.replace("http://fez.jp/02/02-00.html");}
function jump_h3() {window.location.replace("http://fez.jp/cgi-bin/subcategory.cgi?kcode=9");}
function jump_h4() {window.location.replace("http://fez.jp/diary/diary.cgi");}
function jump_h5() {window.location.replace("http://fez.jp/05/05-00.html");}
function jump_f1() {window.location.replace("http://fez.jp/10/10-profile.html");}
function jump_f2() {window.location.replace("http://fez.jp/10/11-privacy.html");}
function jump_f3() {window.location.replace("http://fez.jp/10/12-sitemap.html");}
function jump_f4() {window.location.replace("http://fez.jp/10/13-link.html");}
function jump_f5() {window.location.replace("mailto:shop@fez.jp");}
function jump_f6() {window.location.replace("http://fez.jp/");}


//画像をランダムに表示
var iValue, rNumber;

var img1=new Image();
var img2=new Image();
var img3=new Image();
img1.src="00/image/00_01.jpg";
img2.src="00/image/00_02.jpg";
img3.src="00/image/00_03.jpg";

function displayImage() {
	iValue=Math.random()*3;
	rNumber=Math.ceil(iValue);
	if(rNumber==0) rNumber++;
	document.top_image1.src=eval("img"+rNumber+".src");
}

