// JavaScript Document

// ロールオーバー
function initRollOverImages() {
  var image_cache = new Object();
  $("img.rover").each(function(i) {
	var elem = this;
    var imgsrc = this.src;
    var dot = this.src.lastIndexOf('.');
    var imgsrc_ro = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
    image_cache[this.src] = new Image();
    image_cache[this.src].src = imgsrc_ro;
    $(this).hover(
      function() { this.src = imgsrc_ro;IEPNGFIX.fix(this); },
      function() { this.src = imgsrc;IEPNGFIX.fix(this);});
  });
}

$(document).ready(initRollOverImages);


//メニューアクティブ化
//画面ロード時にimgタグを_onの付いた画像に張り替える
function Menu_active(id){
	
	var target_img = "img#"+id;	
	$(target_img).each(function(i) {								
								
		var dot = this.src.lastIndexOf('.');
    	var imgsrc_ro = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
		this.src = imgsrc_ro;
		
		//既に割り当てられているロールオーバー関数を上書き
		$(this).hover(
		  function() { this.src = imgsrc_ro; },
		  function() { this.src = imgsrc_ro; });
		
	});
	
}

//アクティブ化させたいaタグのidを渡して、hereというクラスを付ける
function left_menu_active(id){

    var target_li = "li#"+id;
    $(target_li).addClass("here");

}
function header_menu_active(id){

    var target_a = "a#"+id;
    $(target_a).addClass("here");

}
function footer_menu_active(id){

    var target_a = "a#"+id;
    $(target_a).addClass("here");

}


//実践布教研究会　ポップアップ
function OpenWin1(){
    win1=window.open("mission_window.html","","width=760,height=1000,scrollbars=yes");
}
//仏教伝道文化賞　ポップアップ
function OpenWin2(){
    win1=window.open("culture_window.html","","width=760,height=1000,scrollbars=yes");	
}
//仏教聖典とは　ポップアップ
function OpenWin3(){
    win1=window.open("bindex_window.html","","width=500,height=405,scrollbars=no");	
}
//手話や点字で学ぶ仏教　ポップアップ
function OpenWin4(){
    win1=window.open("language_window.html","","width=476,height=563,scrollbars=no");	
}
//Cultural Awards for the Promotion of Buddhism　ポップアップ
function OpenWin5(){
    win1=window.open("culture_window.html","","width=760,height=1000,scrollbars=yes");	
}
//座談会「仏教伝道文化賞・功労賞、両受賞者に聞く～世界に弘がる仏教のこころ～」上巻　ポップアップ
function OpenWin6(){
    win1=window.open("20090501_window.html","","width=500,height=342,scrollbars=no");	
}
