//--------------------------------------------------------
//scroll
//--------------------------------------------------------
var str= "　　　　　　　　　　　　　　　　　　　　　　　　　　　ようこそ「相模大野ギターアンサンブル」のページへ。　　　　　　　　　　　　　　　　　　　　　　　　　　BGMは「Entertainer」です。作曲はJoplin　Scott、演奏は当アンサンブル初代指揮者の西川真史（現在、新堀ギター音楽院中山教室主任）先生です。　　　　　　　　　　　　";
function scroll() {
    window.status = str;
    str = str.substring(2,str.length) + str.substring(0,2);
}
//--------------------------------------------------------
//  changeImage 
//--------------------------------------------------------
var sec;
var imgNum;
sec=5000;
imgNum=-1;
var img_preload=new Array(10);
var photo_title=new Array(10);
img_preload[0]=new Image();img_preload[0].src="images/ensou081012.jpg";
img_preload[1]=new Image();img_preload[1].src="images/ensou080608.jpg";
img_preload[2]=new Image();img_preload[2].src="images/ensou071007.jpg";
img_preload[3]=new Image();img_preload[3].src="images/ensou070701.jpg";
img_preload[4]=new Image();img_preload[4].src="images/ensou061008.jpg";
img_preload[5]=new Image();img_preload[5].src="images/ensou060709.jpg";
img_preload[6]=new Image();img_preload[6].src="images/ensou051009.jpg";
img_preload[7]=new Image();img_preload[7].src="images/ensou050626.jpg";
img_preload[8]=new Image();img_preload[8].src="images/ensou041011.jpg";
img_preload[9]=new Image();img_preload[9].src="images/ensou040627.jpg";
photo_title[0]= "2008年10月12日 第39回全日本ギターコンクール";
photo_title[1]= "2008年 6月 8日 響け輝けﾌﾙｷﾞﾀｰｵｰｹｽﾄﾗ2008";
photo_title[2]= "2007年10月 7日 第38回全日本ギターコンクール";
photo_title[3]= "2007年 7月 1日 響け輝けﾌﾙｷﾞﾀｰｵｰｹｽﾄﾗ2007";
photo_title[4]= "2006年10月 8日 第37回全日本ギターコンクール";
photo_title[5]= "2006年 7月 9日 響け輝けﾌﾙｷﾞﾀｰｵｰｹｽﾄﾗ2006";
photo_title[6]= "2005年10月 9日 第36回全日本ギターコンクール";
photo_title[7]= "2005年 6月26日 響け輝けﾌﾙｷﾞﾀｰｵｰｹｽﾄﾗ2005";
photo_title[8]= "2004年10月11日 第35回全日本ギターコンクール";
photo_title[9]= "2004年 6月27日 響け輝けﾌﾙｷﾞﾀｰｵｰｹｽﾄﾗ2004";
function changeImage() {
  if(imgNum>=9) {
      imgNum=0;
  }
  else { 
      imgNum=++imgNum; 
  }
  document.myImg.src=img_preload[imgNum].src;
  document.Titleform.txt1.value=photo_title[imgNum]; 
  setTimeout("changeImage()",sec);
}
//--------------------------------------------------------
//   roolover 
//--------------------------------------------------------
var imgM_on=new Image();
var imgM_off=new Image();
var imgF_on=new Image();
var imgF_off=new Image();
var imgC_on=new Image();
var imgC_off=new Image();
imgM_on.src="images/M_image2.gif"
imgM_off.src="images/M_image1.gif"
imgF_on.src="images/F_image2.gif"
imgF_off.src="images/F_image1.gif"
imgC_on.src="images/C_image2.gif"
imgC_off.src="images/C_image1.gif"

function rollon(targetid,sex) {     
    if (sex=="M") {
	    document.images[targetid].src=imgM_on.src;
	}
	else if (sex=="F") {
	    document.images[targetid].src=imgF_on.src;
	}
	else {
	    document.images[targetid].src=imgC_on.src;
	}
}

function rolloff(targetid,sex) {     
    if (sex=="M") {
	    document.images[targetid].src=imgM_off.src;
	}
	else if (sex=="F") {
	    document.images[targetid].src=imgF_off.src;
	}
	else {
	    document.images[targetid].src=imgC_off.src;
	}
}
//--------------------------------------------------------
//  open_win    
//--------------------------------------------------------
function open_win(p_member,p_width,p_height){
     
	 member="member/"+p_member+".html"
	 option="resizable=yes,scrollbars=yes,width="+p_width+",height="+p_height 
       win=window.open(member,'newwin',option);
}
function open_win_Music(p_name,p_width,p_height){
     
	 name="sound_library/"+p_name+".html"
	 option="resizable=yes,scrollbars=yes,width="+p_width+",height="+p_height 
       win=window.open(name,'newwin',option);
}
//
//