<!---
e=7; //画像数

e=e-1;
url=new Array(e);
ga=new Array(e);

//　各画像アドレス・リンク設定
url[0]="meister/e_index.html";
ga[0]="meister_b/01.jpg";

url[1]="meister/e_index.html";
ga[1]="meister_b/02.jpg";

url[2]="meister/e_index.html";
ga[2]="meister_b/03.jpg";

url[3]="meister/e_index.html";
ga[3]="meister_b/04.jpg";

url[4]="meister/e_index.html";
ga[4]="meister_b/05.jpg";

url[5]="meister/e_index.html";
ga[5]="meister_b/06.jpg";

url[6]="meister/e_index.html";
ga[6]="meister_b/07.jpg";

len=(""+e).length;
while(1){
s=eval(ran());
if(s<=e) break;
}
document.write('<A HREF="JavaScript:ten()" onMouseOver="sta()"; return true;">');
document.write('<IMG src='+ga[s]+' name="gazou" border="0"></A>');
function ran(){
out="";
for(i=1;i<=len;i++){
while(1){
r=Math.random();
if(r!=1)break;
}
r=""+Math.floor(r*10);
out=out+r;
}
return out;
}
function ten(){
window.open(url[s],"_parent","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes"); 
}
function sta(){
window.status=url[s];
t02=setTimeout("sto()",1000);
}
function sto(){
window.status="";
clearTimeout(t02);
}
function che(){
while(1){
s=eval(ran());
if(s<=e) break;
}
document.gazou.src=ga[s];
t01=setTimeout("che()",2000); //間隔（5秒）
}
che();
//--->